Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- class TT
- {
- TT();
- ~TT();
- };
- ////////////////////////////////////////////////////
- int main() //
- {
- }
- /*
- #include <stdio.h>
- void foo();
- void (*f)();
- ////////////////////////////////////////////////////
- int main() //
- {
- f = foo;
- f();
- }
- //////////////////////////////////////////////////////
- void foo()
- {
- printf("SONY \n");
- }
- */
- /*
- #include <stdio.h>
- int n, *p;
- float fPi = 3.914;
- ////////////////////////////////////////////////////
- int main() //
- {
- n = fPi;
- printf("n = %d\n", n);
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement