Examveda

What will be the output of the following C code?
#include <stdio.h>
#define A 1 + 2
#define B 3 + 4
int main()
{
    int var = A * B;
    printf("%d\n", var);
}

A. 9

B. 11

C. 12

D. 21

Answer: Option B


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function