C Programming
mediumQ1
What is the output of: #include <stdio.h> int main() { int a = 3, b = 4; int c = a & b; printf("%d", c); return 0; }
1 / 15
What is the output of: #include <stdio.h> int main() { int a = 3, b = 4; int c = a & b; printf("%d", c); return 0; }