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