C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good Good Morning M Morning None of these Good Good Morning M Morning None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} Forget it Ok here Error None of These Forget it Ok here Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? case register auto default main case register auto default main ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? Theoratically no limit. The only practical limits are memory size and compilers. 2 8 20 50 Theoratically no limit. The only practical limits are memory size and compilers. 2 8 20 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char s[]="man"; int i; for(i=0; s[i]; i++) printf("%c%c%c%c ", s[i], *(s+i), *(i+s), i[s]);} mmmm nnnn aaaa mmm nnn aaa None of These Compiler Error mmmm nnnn aaaa mmm nnn aaa None of These Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? examians1 1examians exam_veda _examians examians1 1examians exam_veda _examians ANSWER DOWNLOAD EXAMIANS APP