exit () is used to
a) exit () terminates the execution of the program itself
b) exit () terminates the execution of the loop
c) exit () terminates the execution of the block
d) none of the above
How can I find out if there are characters available for reading?
Explain the difference between strcpy() and memcpy() function?
what is the difference between NULL & NUL keywords in C?
What is a function simple definition?
What is a null pointer in c?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
Program to display given 3 integers in ascending order
why return type of main is not necessary in linux
what is c programing
Ow can I insert or delete a line (or record) in the middle of a file?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
Write a program with dynamically allocation of variable.