C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 2..4 2..2 4..2 4..4 2..4 2..2 4..2 4..4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Some Address will be printed None of These Hello H Some Address will be printed None of These Hello H ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ float me = 1.1; double you = 1.1; if(me==you) printf("I hate Examveda"); else printf("I love Examveda");} Error I hate Examians None of These I love Examians Error I hate Examians None of These I love Examians ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff4 fff0 fff3 fff2 fff1 fff4 fff0 fff3 fff2 fff1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );} 1 2 9 0.25 0.5 1 2 9 0.25 0.5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope No scope at all Function scope File scope Local scope Block scope No scope at all Function scope File scope Local scope ANSWER DOWNLOAD EXAMIANS APP