What is "Duff's Device"?
No Answer is Posted For this Question
Be the First to Post Answer
what is difference between array and structure?
44 Answers College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,
Explain how can you tell whether a program was compiled using c versus c++?
Why do we need functions in c?
Why isn't any of this standardized in c? Any real program has to do some of these things.
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
What should be keep precautions while using the recursion method?
why do we use # in c-language?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
I heard that you have to include stdio.h before calling printf. Why?
What is 2 d array in c?
What is #line in c?