A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
8
Task/Hello-world-Text/C/hello-world-text-1.c
Normal file
8
Task/Hello-world-Text/C/hello-world-text-1.c
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
printf("Goodbye, World!\n");
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
8
Task/Hello-world-Text/C/hello-world-text-2.c
Normal file
8
Task/Hello-world-Text/C/hello-world-text-2.c
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
puts("Goodbye, World!");
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue