Why dont c comments nest?
No Answer is Posted For this Question
Be the First to Post Answer
Can stdout be forced to print somewhere other than the screen?
What is optimization in c?
How are structure passing and returning implemented?
how the size of an integer is decided? - is it based on processor or compiler or OS?
19 Answers HCL, JPR, Microsoft, nvidia,
What is 'bus error'?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
How can we see the Expanded source code and compiled code for our source program in C?
What is character set?
write a program to concatenation the string using switch case?
Is using exit() the same as using return?
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
What is indirection in c?