Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- include <stdio.h>
- void foo ( void ) {
- int a;
- printf("%d\n", a);
- }
- void bar ( void ){
- int a = 42;
- }
- int main ( void ) {
- bar();
- foo();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement