What will be the output of the following c code?
#include
#if A==1
#define B 0
#else
#define B 1
#endif
int main()
{
printf("%d",B);
return 0;
}
A)0
B)1
C)01
D)none of the above
Answers
Answered by
1
Answer:
D
Explanation:
It will not exicute the program is not correct
Similar questions