C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} complier error None of these examians well done examians complier error None of these examians well done examians ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good Morning Good M Morning None of these Good Morning Good M Morning None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 20 8 50 2 Theoratically no limit. The only practical limits are memory size and compilers. 20 8 50 2 Theoratically no limit. The only practical limits are memory size and compilers. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} hj grjeodt None of These hi friends ij!gsjfoet hj grjeodt None of These hi friends ij!gsjfoet ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} 100 Error 1 0 100 Error 1 0 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);} C No output at all. NOITANIMAXE C NOITANIMAXE Syntax error C No output at all. NOITANIMAXE C NOITANIMAXE Syntax error ANSWER DOWNLOAD EXAMIANS APP