C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} infinity loop 3 2 1 no output 3 2 1 0 infinity loop 3 2 1 no output 3 2 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0713 713 Syntax error 1289 0289 0713 713 Syntax error 1289 0289 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? James F. Codd Dr. Dennis Ritchie Gosling Bjarne Stroustrup James F. Codd Dr. Dennis Ritchie Gosling Bjarne Stroustrup ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following statements are true after execution of the program.void main(){ int a[10], i, *p; a[0] = 1; a[1] = 2; p = a; (*p)++;} a[0] = 3 a[1] = 3 a[1] = 2 Compilation error a[0] = 2 a[0] = 3 a[1] = 3 a[1] = 2 Compilation error a[0] = 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the correct output of the following program?#includevoid main(){ char str[] = "C EXAMINATION", rev[17]; int i = strlen(str), j=0; for( ; i>=0; rev[j++] = str[i--]) rev[j] = str[j] ; puts(rev);} No output at all. NOITANIMAXE C NOITANIMAXE Syntax error C No output at all. NOITANIMAXE C NOITANIMAXE Syntax error C ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 9 10 None of these. 11 9 10 None of these. ANSWER DOWNLOAD EXAMIANS APP