What is exit() function?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }

3 Answers  


What is calloc malloc realloc in c?

0 Answers  


i got 75% in all semester am i eligible for your company

0 Answers   Infosys,


what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.

6 Answers   HCL,


what is constant pointer?

3 Answers  






how to execute a program using if else condition and the output should enter number and the number is odd only...

0 Answers  


write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.

1 Answers  


What is union in c?

0 Answers  


What are the 5 types of organizational structures?

0 Answers  


What is meant by type casting?

0 Answers  


What is #include in c?

0 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100

1 Answers  


Categories