Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
void main()
{
    char a = '0';
    char b = 'm';
    int c = a && b || '1';
    printf("%d\n", c);
}

A. 0

B. a

C. 1

D. m

Answer: Option C


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals