Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
83
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.  
  3. int test()
  4. {
  5.         return 5;
  6. }
  7.  
  8. int main()
  9. {
  10.         if (int x = test())
  11.         {
  12.                 printf("What!");
  13.         }
  14.         return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement