What is the auto keyword good for?
No Answer is Posted For this Question
Be the First to Post Answer
how to write a prog in c to convert decimal number into binary by using recursen function,
What is the difference between getch() and getche()?
In c language can we compile a program without main() function?
which one is better structure or union?(other than the space occupied )
What is main return c?
Do variables need to be initialized?
What is a static variable in c?
code for inverse a matrix
Is multithreading possible in c?
Explain what is the benefit of using an enum rather than a #define constant?
Write code for atoi(x) where x is hexadecimal string.
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?