Advertisement
Dprogrammed1

C ques 60

Apr 5th, 2019
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include<stdio.h>
  2. void main(){
  3.     signed int a=-1;
  4.     unsigned int b=-1u;
  5.     if(a==b)
  6.          printf("The Lord of the Rings");
  7.     else
  8.          printf("American Beauty");
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement