What is integer constants?
No Answer is Posted For this Question
Be the First to Post Answer
Do character constants represent numerical values?
What is function what are the types of function?
Write a c program to print the sizes and ranges of different data types in c?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
C program to perform stack operation using singly linked list
What does the format %10.2 mean when included in a printf statement?
Write a program to swap two numbers without using third variable in c?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is extern c used for?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is the description for syntax errors?