What is #error and use of it?
No Answer is Posted For this Question
Be the First to Post Answer
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
What does sizeof return c?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
How would you sort a linked list?
What are disadvantages of C language.
What is typedf?
What is return in c programming?
ASCII stands for
What are qualifiers in c?
What are the applications of c language?
Can a variable be both constant and volatile?
How variables are declared in c?