What does d mean?
No Answer is Posted For this Question
Be the First to Post Answer
write a prgram of swapping with 2 valiables
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
How can a program be made to print the line number where an error occurs?
What is the heap?
Give me the code of in-order recursive and non-recursive.
What does %p mean c?
What are the preprocessor categories?
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
how to swap 2 numbers within a single statement?
What is .obj file in c?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y