Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int a =13;
- int b=2;
- (a&b) ? printf("a") : printf("b");
- (a&&b) ? printf("a") : printf("b");
- (a|b) ? printf("a") : printf("b");
- (a||b) ? printf("a") : printf("b");
- What will be printed on the screen:
- a)aaaa
- b)baaa
- c)baba
- d)abba
- e)aabb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement