Compare commits
No commits in common. "new-amazing-feature" and "main" have entirely different histories.
new-amazin
...
main
1 changed files with 1 additions and 10 deletions
11
main.c
11
main.c
|
@ -1,13 +1,4 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
int main(void) {
|
int main() { return NULL; }
|
||||||
char *name = malloc(10);
|
|
||||||
|
|
||||||
printf("What's your name?\n> ");
|
|
||||||
scanf("%s", name);
|
|
||||||
|
|
||||||
printf("Hello %s!\n", name);
|
|
||||||
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
Reference in a new issue