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

Post New Answer

More C Interview Questions

regarding pointers concept

0 Answers  


How to write a C program to determine the smallest among three nos using conditional operator?

2 Answers   Google,


What are the rules for identifiers in c?

0 Answers  


Explain the difference between #include "..." And #include <...> In c?

0 Answers  


what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }

6 Answers   IBM,






Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result

0 Answers  


Suggesting that there can be 62 seconds in a minute?

0 Answers  


question-how to run a c programme.

6 Answers  


5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

2 Answers   Accenture,


how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0

4 Answers   Wipro,


When is a void pointer used?

0 Answers  


how to determine the complexity of an algorithm as log(n)

1 Answers   Google,


Categories