ProPathshala

Support For Beginners & Learners.

  • Banks
  • Books
  • Case Study
  • Courses
    • Class XI
    • Class XII
    • BBA
    • BCA
    • MCIS
    • MPA
  • Office Package
    • Excel
    • PowerPoint
  • Tutorials
    • E-Business
    • Fundamentals of computer
    • Software Engineering
    • System Analysis & Designing
    • C Programming
    • Database
    • HRM
    • PHP
  • Technology News
  • WordPress

Category - C Programming

  • C Programming
  • Class XI
  • Class XII

Important Questions Computer Science

March 3, 2021
by ProPathshala
Add Comment

For Class XI 1. What is computer system? Explain any one generations of computers. 2. What are the application areas of computer?3. What is html? Define five html tags.4. What is operators in C programming? Define Assignment...

Continue reading

  • C Programming
  • Class XI
  • Class XII

Operators in c Programming

February 22, 2021
by ProPathshala
Add Comment

Continue reading

  • C Programming

What do you mean by “local” “global” and “static” variables? Explain with examples.

January 23, 2021
by ProPathshala
Add Comment

Local variable : any variable which is declared within the function is called local variable. This type of variable can be accessed within the same number function only. Global Variable : any variable which is declared before...

Continue reading

  • C Programming

Wap to calculate and display the multiplication table using a nested loop.

November 23, 2020
by ProPathshala
Add Comment

#include<stdio.h> #include<conio.h> void main() { int a,i,n1,n2,m; printf("Enter the first and last value of the series\n"); scanf("%d,%d",&n1,&n2); for(a=n1;a<=n2;a++) { printf("\n The...

Continue reading

  • C Programming

Wap to display the following numeric series.

November 23, 2020
by ProPathshala
Add Comment

Using for loop: #include<stdio.h> #include<conio.h> void main(){ int x,y; for(x=1;x<=5;x++) { for(y=1;y<=x;y++) { printf("%d",y); } printf("\n"); } getch(); } Using while...

Continue reading

  • C Programming

C Programming Notes

November 12, 2020
by ProPathshala
Add Comment

Continue reading

  • C Programming

C Programming Important Questions for the final exams.

November 12, 2020
by ProPathshala
Add Comment

What is looping? Write a program to calculate and display the multiplication table using nested loop. [2+8]Describe the “strca”, “strcpy”, “strle” and “strrev” string functions with examples. [10]Write a program...

Continue reading

  • C Programming
  • Class XI

what is the difference between library function and user-defined function?

November 11, 2020
by ProPathshala
Add Comment

Library FunctionUser defined function1. library functions are predefined functions in the C compiler.1. user-defined is a function defined by the user to perform specific tasks.2. This function required a header file.2. This...

Continue reading

  • C Programming

Write a program to read different names and addresses into the computer and sort them on the basis of names into alphabetical order.

November 4, 2020
by ProPathshala
Add Comment

#include<stdio.h> #include<conio.h> #include<string.h> #define MAX 20 struct alphabetic { char name[50]; char address[100]; }s[MAX], temp; int main(void) { int i, j, index; char t[100]...

Continue reading

  • C Programming

Write a c program to “Welcome to Nepal” in a file.

November 2, 2020
by ProPathshala
Add Comment

Programming Using File Handling: #include<stdio.h> #include<conio.h> void main(){ FILE *fp; fp=fopen("C:\\nepal.dat","w"); fprintf("fp,"%s", "Welcome to Nepal"); fclose(fp); getch(); } output : Welcome to Nepal

Continue reading

1 2 3 Next

Copyright@ 2021 ProPathshala

About!! Contact!! Privacy & Policy!! Terms & Conditions!! Sitemap
  • Banks
  • Books
  • Case Study
  • Courses
    • Class XI
    • Class XII
    • BBA
    • BCA
    • MCIS
    • MPA
  • Office Package
    • Excel
    • PowerPoint
  • Tutorials
    • E-Business
    • Fundamentals of computer
    • Software Engineering
    • System Analysis & Designing
    • C Programming
    • Database
    • HRM
    • PHP
  • Technology News
  • WordPress