what does exit() do?
Answers were Sorted based on User's Feedback
Answer / shruti
nopes,
it does not come out of the executing prog normally..
for that, we have to explicitly mention as
exit(0);
| Is This Answer Correct ? | 7 Yes | 0 No |
What is the general form of a C program?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
What is meant by type casting?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
What is the use of typedef in c?
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
What is modeling?
What are the parts of c program?
HOW DO YOU HANDLE EXCEPTIONS IN C?