difference between object file and executable file
No Answer is Posted For this Question
Be the First to Post Answer
What is the sizeof () operator?
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
what is the output of printf("%d",(scanf("%d",10));
What is maximum size of array in c?
Explain what is wrong with this statement? Myname = ?robin?;
What is the difference between macros and inline functions?
why Language C is plateform dependent
What are identifiers and keywords in c?
Explain c preprocessor?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?