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 does 3 periods mean in texting?
In a switch statement, explain what will happen if a break statement is omitted?
What is 1d array in c?
What does static variable mean in c?
what is the similarities between. system call and library function?
What is the real difference between arrays and pointers?
27 Answers Hexaware, Logic Pro, TCS,
What is pointer & why it is used?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
can i know the source code for reversing a linked list with out using a temporary variable?
explain what is fifo?
Explain what are the __date__ and __time__ preprocessor commands?
What is a class?