Examveda

What will be the output of the following C code?
#include <stdio.h>
int main()
{
    int a = 1;
    if (a--)
        printf("True");
        if (a++)
            printf("False");
}

A. True

B. False

C. True False

D. No Output

Answer: Option A


This Question Belongs to C Program >> Control Structures

Join The Discussion

Related Questions on Control Structures