Question:What will be output when you will execute following c code?
#include<stdio.h>
void main(){
    int a=2;
    if(a--,--a,a)
         printf("The Dalai Lama");
    else
         printf("Jim Rogers");
}
Choose all that apply: 

A The Dalai Lama 

B Jim Rogers 

C Run time error 

D Compilation error: Multiple parameters in if statement 

E None 

+ Answer
+ Explanation
+ Report
Total Preview: 817

Copyright © 2024. Powered by Intellect Software Ltd