Find the output of the above program or error, if any.
#include<stdio.h>
#include<conio.h>
int main()
{
int a=8, b=2,c;
c=a^b;
printf(“the result is C=%d”,c);
getch();
}
Reveal answer
Fill a bubble to check yourself
Find the output of the above program or error, if any.
#include<stdio.h>
#include<conio.h>
int main()
{
int a=8, b=2,c;
c=a^b;
printf(“the result is C=%d”,c);
getch();
}