Advertisement
thenewboston

C Programming Tutorial - 13 - Cats Love Bagels (pt. 1)

Aug 22nd, 2014
455
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.     int a = 4 + 2 * 6;
  7.     printf("Result: %d \n", a);
  8.     a = (4 + 2) * 6;
  9.     printf("Result: %d \n", a);
  10.  
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement