Home / C Programming / Operators and Expressions :: Discussion

Discussion :: Operators and Expressions

  1. What will be the output?

    void main(){

    int a=10, b=20;

    char x=1, y=0;

    if(a,b,x,y){

    printf("EXAM");

    }

    }

  2. A.

     XAM is printed

    B.

     exam is printed

    C.

     Compiler Error

    D.

     Nothing is printed

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    Explanation Not Provided


Be The First To Comment