C Programming A C variable cannot start with An alphabet Both of the above A special symbol other than underscore A number An alphabet Both of the above A special symbol other than underscore A number 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");} None of These Forget it Error Ok here None of These Forget it Error Ok here ANSWER DOWNLOAD EXAMIANS APP
C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 1 3 2 0 1 3 2 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} 2 Linker Error Compiler Error 20 2 Linker Error Compiler Error 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff0 fff2 fff4 fff3 fff1 fff0 fff2 fff4 fff3 fff1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ char str1[] = "abcd"; char str2[] = "abcd"; if(str1==str2) printf("Equal"); else printf("Unequal");} Unequal None of these. Equal Error Unequal None of these. Equal Error ANSWER DOWNLOAD EXAMIANS APP