Skip to content
Snippets Groups Projects
Commit 9b08f687 authored by angrave's avatar angrave
Browse files

removed hello.c

parent 80467d44
No related branches found
No related tags found
No related merge requests found
#include <stdio.h>
#include <string.h>
#include <unistd.h>
int main() {
puts("Hello World");
printf("The answer is %d\n",42);
putchar('\n');
fprintf(stdout,"Yes\n");
write(1,"Yes!",strlen("Yes!"));
return 42;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment