What is integer constants?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Do character constants represent numerical values?

0 Answers  


What is function what are the types of function?

0 Answers  


Write a c program to print the sizes and ranges of different data types in c?

1 Answers  


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(); }

4 Answers   CTS, Oracle,


C program to perform stack operation using singly linked list

3 Answers  






What does the format %10.2 mean when included in a printf statement?

0 Answers  


Write a program to swap two numbers without using third variable in c?

0 Answers  


Function calling procedures? and their differences? Why should one go for Call by Reference?

0 Answers   ADP,


What is extern c used for?

0 Answers  


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

4 Answers   TCS,


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.

0 Answers  


What is the description for syntax errors?

0 Answers  


Categories