C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0289 0713 713 1289 Syntax error 0289 0713 713 1289 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} g##g2 Syntax error 10012 100 Runtime error g##g2 Syntax error 10012 100 Runtime error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 11 10 15 12 11 10 15 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); None of these 1 0 0 1 0 0 1 1 None of these 1 0 0 1 0 0 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... ASCII value of the input read. 1 The actual values read for each argument. The number of successful read input values. 0 ASCII value of the input read. 1 The actual values read for each argument. The number of successful read input values. 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is a complete function? int funct(int x) { return x=x+1; } None of these int funct(); void funct(int) { printf(“Hello"); } void funct(x) { printf(“Hello"); } int funct(int x) { return x=x+1; } None of these int funct(); void funct(int) { printf(“Hello"); } void funct(x) { printf(“Hello"); } ANSWER DOWNLOAD EXAMIANS APP