C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 10 14 1 None of these 0 10 14 1 None of these 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following program?#includeint c[10] = {1,2,3,4,5,6,7,8,9,10}; main(){ int a, b=0; for(a=0;a<10;++a) if(c[a]%2 == 1) b+=c[a]; printf("%d", b);} None of these 30 25 20 24 None of these 30 25 20 24 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);} Error x=4 x=0 x=5 x=1 Error x=4 x=0 x=5 x=1 ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with An alphabet Both of the above A special symbol other than underscore A number An alphabet Both of the above A special symbol other than underscore A number ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; is illegal None of these. is syntactically and semantically correct is legal but meaningless is illegal None of these. is syntactically and semantically correct is legal but meaningless ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 1 1 None of these 0 0 1 0 0 1 1 1 None of these 0 0 1 0 ANSWER DOWNLOAD EXAMIANS APP