Explain how many levels deep 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

5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer

4 Answers  


Why c is faster than c++?

0 Answers  


how to use enum datatype?Please explain me?

3 Answers   Excel,


What is the difference between c &c++?

0 Answers  


What is the size of a union variable?

0 Answers  






What is use of integral promotions in c?

0 Answers  


Difference between Shallow copy and Deep copy?

0 Answers  


#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }

1 Answers  


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


What's the difference between DELETE TABLE and TRUNCATE TABLE commands?

2 Answers   CTC,


What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none

9 Answers   IBM,


What is a pointer on a pointer in c programming language?

0 Answers  


Categories