What will be the output of the following C code?
#include
int main()
{
int one = 1, two = 2;
#ifdef next
one = 2;
two = 1;
#endif
printf("%d, %d", one, two);
}
Answer: B
No answer description available for this question.