what is the return value (status code) of exit() function....
what the arguments(integer value) passed to it means....
Answer / arindam majumder
0 if successful and a non-zero value if unsuccessful.
The argument signifies whether the program have
executed successfully or not.
If 0,then it is successful.And a non-zero value indicates
an error.Several type of errors may occur.So a non-zero
value is supplied.Not 1 or 2 or...some specific value.
| Is This Answer Correct ? | 12 Yes | 0 No |
What is the difference between variable declaration and variable definition in c?
What are high level languages like C and FORTRAN also known as?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
Output for following program using for loop only * * * * * * * * * * * * * * *
What are logical errors and how does it differ from syntax errors?
Implement bit Array in C.
Is c pass by value or reference?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
How can I avoid the abort, retry, fail messages?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }