C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 1 None of these 0 0 0 1 1 0 1 1 None of these 0 0 0 1 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();} Infinite Loop 5 5 5 5 5 None of These 5 4 3 2 1 Infinite Loop 5 5 5 5 5 None of These 5 4 3 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define int charvoid main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));} sizeof(i)=1 None of These sizeof(i)=2 Compiler Error sizeof(i)=1 None of These sizeof(i)=2 Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? sqr(x) pow(2, x) power(2, x) pow(x, 2) power(x, 2) sqr(x) pow(2, x) power(2, x) pow(x, 2) power(x, 2) ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Editing During Preprocessing During Execution During linking None of these During Editing During Preprocessing During Execution During linking None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} hai absiha haasi asiha hai absiha haasi asiha ANSWER DOWNLOAD EXAMIANS APP