Guest User

Untitled

a guest
Jul 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. long IQ = 999999;
  4. void main( )
  5. {
  6.     if(IQ >=100)
  7.     {
  8.         printf("Your IQ is %i",IQ);
  9.     }
  10.     else
  11.     {
  12.         printf("You'r IQ is Low...");
  13.     }
  14.     getchar();
  15. }
Add Comment
Please, Sign In to add comment