Can include files be nested?


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

Post New Answer

More C Interview Questions

pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()

2 Answers   TCS, ZenQ,


main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }

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,


Write a C program to fill a rectangle using window scrolling

1 Answers  


when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .

4 Answers  






What is the meaning of && in c?

0 Answers  


Find greatest of two numbers using macro

4 Answers   Bosch, Siemens,


C,c++, Java is all are structural oriented or procedure oriented language..?

6 Answers  


What does the error message "DGROUP exceeds 64K" mean?

0 Answers   Celstream,


What is call by value in c?

0 Answers  


What is #error and use of it?

0 Answers  


Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.

2 Answers  


Categories