C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 053 65 Syntax error 65 65 065 65 53 65 053 65 Syntax error 65 65 065 65 53 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} Error 1 2 -2 Error 1 2 -2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed if the following code is executed?void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);} x=5 Error x=1 x=4 x=0 x=5 Error x=1 x=4 x=0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? main() start() getch() system() printf() main() start() getch() system() printf() 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 20 10 20 21 10 10 10 11 11 10 20 21 21 10 20 21 20 10 20 21 10 10 10 11 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam Veda Exam Exam\0Veda None of these Veda Exam Veda Exam Exam\0Veda None of these Veda ANSWER DOWNLOAD EXAMIANS APP