C Programming Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} None of These Error Forget it Ok here None of These Error Forget it Ok here 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));} Garbage Value 000 433 333 444 Garbage Value 000 433 333 444 ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ float long char short int float long char short int 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);} NOITANIMAXE C Syntax error NOITANIMAXE C No output at all. NOITANIMAXE C Syntax error NOITANIMAXE C No output at all. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? start() main() system() getch() printf() start() main() system() getch() printf() ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Function scope Block scope No scope at all Local scope File scope Function scope Block scope No scope at all Local scope ANSWER DOWNLOAD EXAMIANS APP