C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 0 None of these 1 0 0 1 1 1 0 0 None of these 1 0 0 1 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Examians None of these Both A and B Exam_veda Exam veda Examians None of these Both A and B Exam_veda Exam veda ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} 1 -1 -1 -1 complier error 1 -1 1 1 1 -1 -1 -1 complier error 1 -1 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 12 7 11 6 5 6 6 7 6 6 12 7 11 6 5 6 6 7 6 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is right way to Initialize array? int num[6] = { 2, 4, 12, 5, 45, 5 }; int n{} = { 2, 4, 12, 5, 45, 5 }; int n(6) = { 2, 4, 12, 5, 45, 5 }; int n{6} = { 2, 4, 12 }; int num[6] = { 2, 4, 12, 5, 45, 5 }; int n{} = { 2, 4, 12, 5, 45, 5 }; int n(6) = { 2, 4, 12, 5, 45, 5 }; int n{6} = { 2, 4, 12 }; ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 10 11 12 13 14 15 10 11 12 13 14 9 10 11 12 13 Infinite loop None of these 10 11 12 13 14 15 10 11 12 13 14 9 10 11 12 13 Infinite loop None of these ANSWER DOWNLOAD EXAMIANS APP