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 |
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
which of 'arrays' or 'pointers' are faster?
Is javascript based on c?
difference between ordinary variable and pointer in C?
what is c programming?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
What is non linear data structure in c?
Is c still used?
How would you obtain the current time and difference between two times?
What are 3 types of structures?
how to connect oracle in C/C++.
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.