C Programming

medium
0/15 answered
Q1

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