Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdlib.h>
- #include <unistd.h>
- #include <string.h>
- #include <stdio.h>
- #include <sys/types.h>
- struct internet {
- int priority;
- char *name;
- };
- void winner()
- {
- printf("and we have a winner @ %d\n", time(NULL));
- }
- int main(int argc, char **argv)
- {
- struct internet *i1, *i2, *i3;
- i1 = malloc(sizeof(struct internet));
- i1->priority = 1;
- i1->name = malloc(8);
- i2 = malloc(sizeof(struct internet));
- i2->priority = 2;
- i2->name = malloc(8);
- strcpy(i1->name, argv[1]);
- strcpy(i2->name, argv[2]);
- printf("and that's a wrap folks!\n");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement