A
Q. What does the following code do?
Code:
#include <stdio.h>
int main() {
int a = 1, b = 2;
printf("%d", a && b);
return 0;
}
int main() {
int a = 1, b = 2;
printf("%d", a && b);
return 0;
}
- Correct Answer - Option(A)
- Views: 20
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.