what value is returned to operating system after program
execution?


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

Post New Answer

More C Interview Questions

What is the memory allocated by the following definition ? int (*x)[10];

4 Answers   ADITI, Wipro,


Differentiate between full, complete & perfect binary trees.

0 Answers  


all c language question

0 Answers   Wipro,


What are two dimensional arrays alternatively called as?

0 Answers  


plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.

1 Answers  






#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]

7 Answers  


what is use of malloc and calloc?

0 Answers  


diff. between *p and **p

3 Answers  


Explain how do you print an address?

0 Answers  


What should be keep precautions while using the recursion method?

1 Answers  


Can you tell me how to check whether a linked list is circular?

1 Answers  


Categories