C Programming C was primarily developed as General purpose language Data processing language System programming language None of these General purpose language Data processing language System programming language None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct statement.I. The scope of a macro definition need not be the entire program.II. The scope of a macro definition extends from the point of definition to the end of the file.III. New line is a macro definition delimiter.IV. A macro definition may go beyond a line. I, II and III II and III I, II, III and IV I and II II, III and IV I, II and III II and III I, II, III and IV I and II II, III and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 2..2 4..4 4..2 2..4 2..2 4..4 4..2 2..4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} 12PP 12PP345 None of These Compiler Error 12PP 12PP345 None of These Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 11 12 13 None of These 11 12 13 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff1 fff0 fff3 fff4 fff2 fff1 fff0 fff3 fff4 fff2 ANSWER DOWNLOAD EXAMIANS APP