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);} Syntax error C NOITANIMAXE NOITANIMAXE C No output at all. Syntax error C NOITANIMAXE NOITANIMAXE C No output at all. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} well done examians None of these examians complier error well done examians None of these examians complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 33 Compilation Error -1 1 0 33 Compilation Error -1 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -10 450 110 10 -110 -10 450 110 10 -110 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 444 000 333 Garbage Value 433 444 000 333 Garbage Value 433 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? int real char double float int real char double float ANSWER DOWNLOAD EXAMIANS APP