Explain what is #line used for?
No Answer is Posted For this Question
Be the First to Post Answer
size maximum allocated by calloc()
How can you avoid including a header more than once?
What 'lex' does?
How do you sort filenames in a directory?
WAP – represent a char in binary format
How can I use a preprocessorif expression to ?
how to make program without <> in library.
What is the value of uninitialized variable in c?
what is difference between ANSI structure and C99 Structure?
can you change name of main()?how?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
When is a “switch” statement preferable over an “if” statement?