what value is returned to operating system after program
execution?
No Answer is Posted For this Question
Be the First to Post Answer
What is a char in c?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
How we can insert comments in a c program?
What are the types of i/o functions?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
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
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
what are enumerations in C
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
Explain how do you print an address?
Write a program to reverse a given number in c language?
what is a function pointer and how all to declare ,define and implement it ???