Computer Science, asked by mujahidsd810, 3 months ago

Find the output
1 #include <stdio.h>
2
3 int main() {
4
int a = 0;
5
a = 5 || 2 | 1;
6
a <<= 4;
7
a ^= OxF;
8 printf("%d", a);
9
return 0;
10 }​

Answers

Answered by viranipaman
0

Answer:HelloWorld.cpp:1:3: error: stray ‘#’ in program

1 #include <stdio.h>

  ^

HelloWorld.cpp:15:5: error: stray ‘\342’ in program

10 }​

    ^

HelloWorld.cpp:15:6: error: stray ‘\200’ in program

10 }​

     ^

HelloWorld.cpp:15:7: error: stray ‘\213’ in program

10 }​

      ^

HelloWorld.cpp:1:1: error: expected unqualified-id before numeric constant

1 #include <stdio.h>

^

Explanation:

Similar questions