exit () is used to
a) exit () terminates the execution of the program itself
b) exit () terminates the execution of the loop
c) exit () terminates the execution of the block
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
What is a function in c?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
How to write a program for swapping two strings without using 3rd variable and without using string functions.
Method Overloading exist in c ?
How does free() know how many bytes to free?
How can you invoke another program from within a C program?
When do we get logical errors?
What is double pointer?
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
in malloc and calloc which one is fast and why?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Where are the auto variables stored?