Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int foo();
- int n = 8899;
- ////////////////////////////////////////////////////
- int main() //
- {
- // int nA = foo();
- printf("%d%d", foo(), 4);
- }
- /////////////////////////////////////////////////////
- int foo()
- {
- int n1 = 100;
- int n2 = 2;
- int nSumm = n1 + n2;
- return nSumm;
- }
- /*
- #include <stdio.h>
- char sz[12] = "Dima";
- int n = 8899;
- ////////////////////////////////////////////////////
- int main() //
- {
- printf("SONY\n");
- printf("%s\n", "SONY");
- printf("%s\n", sz);
- printf("%d\n", 10 );
- }
- */
- /*
- #include <dllBridge.h>
- ////////////////////////////////////////////////////
- int main() //
- {
- for(int i = 2; i < 28; i += 2) Transit[2][i] = 10000 + i;
- system("pause");
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement