C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 2..2 4..4 2..4 4..2 2..2 4..4 2..4 4..2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; printf("%d", scanf("%d", &i)); // value 10 is given as input here} 10 1 Garbage Value None of These 10 1 Garbage Value None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Hello H None of These Some Address will be printed Hello H None of These Some Address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 10 9 5 11 6 10 9 5 11 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Logical operators Relational operators Equality operators Arithmetic operators Logical operators Relational operators Equality operators Arithmetic operators ANSWER DOWNLOAD EXAMIANS APP