C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 65 65 Syntax error 053 65 065 65 53 65 65 65 Syntax error 053 65 065 65 53 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } Some address will be printed Hello None of these. H Some address will be printed Hello None of these. H ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 5 5 10 5 4 3 10 5 4 4 10 5 3 4 10 5 3 3 10 5 5 5 10 5 4 3 10 5 4 4 10 5 3 4 10 5 3 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);} 1 1 2 2 0 1 2 2 1 1 2 3 0 1 2 3 None of these 1 1 2 2 0 1 2 2 1 1 2 3 0 1 2 3 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 100 100 100 5 0 100 100 0 100 100 5 100 5 0 20 100 100 100 5 0 100 100 0 100 100 5 100 5 0 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of i and j after execution of following program?#includevoid main(){int i, j;for(i=0,j=0;i<10,j<20;i++,j++){printf("i=%d %t j=%d", i, j); }} 20 20 Run time error 10 20 10 10 20 20 Run time error 10 20 10 10 ANSWER DOWNLOAD EXAMIANS APP