Question:What will be output when you will execute following c code?
#include<stdio.h>
void main(){
    int a=5,b=10;
    clrscr();
    if(a<++a||b<++b)
         printf("%d  %d",a,b);
    else
         printf("John Terry");
}
Choose all that apply: 

A 5 10 

B 6 11 

C 6 10 

D Compilation error 

E John Terry 

+ Answer
+ Explanation
+ Report
Total Preview: 736

Copyright © 2024. Powered by Intellect Software Ltd