Advertisement
aeris

Untitled

Oct 13th, 2011
85
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. void foo ( void ) {
  4.     int a;
  5.     printf("%d\n", a);
  6. }
  7.  
  8. void bar ( void ){
  9.     int a = 42;
  10. }
  11.  
  12. int main ( void ) {
  13.     bar();
  14.     foo();
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement