Guest User

Untitled

a guest
Nov 18th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. int a = 10;
  2. float b = 3.14;
  3. double c = 3.14;
  4.  
  5. printf("a is %dn", a); // I'm sorry I forgot to type the parameters just now
  6. printf("b is %fn", b); // Error
  7. printf("c is %fn", c); // Error
  8.  
  9. a is 10
  10. b is 0.000000
  11.  
  12. unsigned long long myStackRegion[MY_STACK_SIZE / sizeof(unsigned long long)];
Add Comment
Please, Sign In to add comment