C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 1 0 1 None of these 0 0 1 0 1 1 0 1 None of these 0 0 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming In an expression involving || operator, evaluationI. Will be stopped if one of its components evaluates to falseII. Will be stopped if one of its components evaluates to trueIII. Takes place from right to leftIV. Takes place from left to right II and IV III and IV I and II I and III II and III II and IV III and IV I and II I and III II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} 3 2 1 0 infinity loop no output 3 2 1 3 2 1 0 infinity loop no output 3 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? None of these Exam veda Both A and B Exam_veda Examians None of these Exam veda Both A and B Exam_veda Examians 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 complier error -1 1 -1 -1 1 1 -1 1 complier error -1 1 -1 -1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54554 54544 45545 45445 54554 54544 45545 45445 ANSWER DOWNLOAD EXAMIANS APP