C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 0 10 1 14 0 10 1 14 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 None of these Infinite loop 9 10 11 12 13 10 11 12 13 14 15 10 11 12 13 14 None of these Infinite loop 9 10 11 12 13 10 11 12 13 14 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 54554 45445 45545 54544 54554 45445 45545 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. Gosling James F. Codd Dennis Ritchie Bjarne Stroustrup Dr. Gosling James F. Codd Dennis Ritchie Bjarne Stroustrup 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 Find the output of the following program. void main() { int i=01289; printf("%d", i); } 1289 Syntax error 0289 713 0713 1289 Syntax error 0289 713 0713 ANSWER DOWNLOAD EXAMIANS APP