C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 53 65 Syntax error 65 65 065 65 053 65 53 65 Syntax error 65 65 065 65 053 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 2 2 1 2 1 1 2 1 2 2 1 2 1 1 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on a new line comes before the first executable statement need not start on the first column has # as the first character need not start on a new line comes before the first executable statement need not start on the first column has # as the first character ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 0 Compiler Error 5 7 6 0 Compiler Error 5 7 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Makes the debugging task easier. Enhances the logical clarity of the program. Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. Makes the debugging task easier. Enhances the logical clarity of the program. Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as General purpose language None of these Data processing language System programming language General purpose language None of these Data processing language System programming language ANSWER DOWNLOAD EXAMIANS APP