C Programming Questions For Practice

  What is programming language? Describe the various types of programming language with their merits and demerits [1+4] (2076, Set B Q.No. 4/ 2076 Set C Q.No. 3) What is programming language? Explain compiler, interpreter and assembler. [1+4] Explain different types of programming languages. [5] (2074 Supp Q.No. 4) What are the differences between syntax … Read moreC Programming Questions For Practice

C programming Solution (Basic I/O & Decision Control Structure Questions)

Write a program to enter two number and find product. #include<stdio.h> #include<conio.h> void main() { int a,b,c; printf(“Enter first number:”); scanf(“%d”,&a); printf(“Enter second number:”); scanf(“%d”,&b); c=a*b; printf(“The Product is: %d”, c); getch(); }   2) Write a program to calculate area of triangle. #include<stdio.h> #include<conio.h> void main() { int b,h; float a; printf(“Enter breadth of … Read moreC programming Solution (Basic I/O & Decision Control Structure Questions)