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 are variables and it what way is it different from constants?
how to find turn around time in operating system?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
Explain the use of 'auto' keyword
Is sizeof a keyword in c?
How can I swap two values without using a temporary?
Explain #pragma statements.
Write a C program to print 1 2 3 ... 100 without using loops?