Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- __attribute__((constructor)) void goFirst (void) {
- puts("I go first!");
- }
- __attribute__((destructor)) void goLast (void) {
- puts("I go last!");
- }
- int main(void) {
- puts("I go whenever the system feels like it. I can haz no power :(");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement