C Programming Standard ANSI C recognizes ______ number of keywords? 32 30 36 40 24 32 30 36 40 24 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0289 713 1289 0713 Syntax error 0289 713 1289 0713 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 50, 13, 24, 13 50, 13, 11, 13 13, 13, 24, 13 13, 10, 24, 50 50, 13, 24, 50 50, 13, 24, 13 50, 13, 11, 13 13, 13, 24, 13 13, 10, 24, 50 50, 13, 24, 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#includevoid main(){ int i = 10; void *p = &i; printf("%f", *(float *)p);} 10 0.000000 Error None of these. 10 0.000000 Error None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as System programming language None of these Data processing language General purpose language System programming language None of these Data processing language General purpose language ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int i=10; printf("i=%d", i); { int i=20; printf("i=%d", i); i++; printf("i=%d", i); } printf("i=%d", i);} 10 20 21 21 10 20 21 10 10 20 21 20 10 10 11 11 10 20 21 21 10 20 21 10 10 20 21 20 10 10 11 11 ANSWER DOWNLOAD EXAMIANS APP