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