Advertisement
thenewboston

C Programming Tutorial - 17 - Making Decisions Using if

Aug 22nd, 2014
535
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. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.     if(4 < 10){
  7.         printf("Easy hoss");
  8.     }
  9.  
  10.     if(16 < 10){
  11.         printf("Meatball");
  12.     }
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement