What will be the output of the following C code?
#include <stdio.h>
int main()
{
int c = 2 ^ 3;
printf("%d\n", c);
}
#include <stdio.h>
int main()
{
int c = 2 ^ 3;
printf("%d\n", c);
}
A. 1
B. 8
C. 9
D. 0
Answer: Option A
Join The Discussion