C Programming Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);} 0 1 2 2 1 1 2 2 0 1 2 3 None of these 1 1 2 3 0 1 2 2 1 1 2 2 0 1 2 3 None of these 1 1 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 10 None of These 9 11 10 None of These 9 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 2..2 2..4 4..4 4..2 2..2 2..4 4..4 4..2 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");} I love Examians Error I hate Examians None of These I love Examians Error I hate Examians None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as System programming language Data processing language General purpose language None of these System programming language Data processing language General purpose language None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good Morning M Good Morning None of these Good Morning M Good Morning None of these ANSWER DOWNLOAD EXAMIANS APP