Explain how does free() know explain how much memory to release?
What does extern mean in a function declaration?
consagous technology placement paper
Why isn't it being handled properly?
What is the symbol indicated the c-preprocessor?
Where are the auto variables stored?
What are directives in c?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
how to find string length wihtout using c function?
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
Is it possible to execute code even after the program exits the main() function?
What is the full form of getch?
What is the use of ?: Operator?