Examveda

What will be the output of the following C code?
#include <stdio.h>
int main()
{
    int one = 1, two = 2;
    #ifdef next
    one = 2;
    two = 1;
    #endif
    printf("%d, %d", one, two);
}

A. 1, 1

B. 1, 2

C. 2, 1

D. 2, 2

Answer: Option B


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function