Find out the output of the given program in binary language.
#include
#include
int main() {
int a = 7, b = 15, c;
c = a | b;
printf("The result comes out to be : %d", c);
getch();
}
Reveal answer
Fill a bubble to check yourself