Guest User

Untitled

a guest
Jan 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. void foo() {
  3. printf("Hellon");
  4. }
  5.  
  6. int main() {
  7. const char *str = "bar";
  8. foo(str);
  9. return 0;
  10. }
  11.  
  12. void foo() {
  13. printf("Hellon");
  14. }
  15.  
  16. foo(str);
Add Comment
Please, Sign In to add comment