Advertisement
Guest User

Untitled

a guest
Aug 8th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int a = 0;
  4.  
  5. int function(){
  6.     char aaa(){
  7.         printf("hello world\n");
  8.     }
  9.     aaa();
  10.     return 0;
  11. }
  12.  
  13.  
  14. int main(){
  15.     function();
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement