Difference between exit() and _exit() function?
No Answer is Posted For this Question
Be the First to Post Answer
Give the rules for variable declaration?
What is an lvalue and an rvalue?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
What does %c do in c?
code for reverse alternate words from astring
How do I initialize a pointer to a function?
Explain what is the use of a semicolon (;) at the end of every program statement?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What is meant by preprocessor in c?
What are the functions to open and close file in c language?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
Can we compile a program without main() function?