Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 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("Hello 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("Hello world!");
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
7
Task/Hello-world-Text/C/hello-world-text-3.c
Normal file
7
Task/Hello-world-Text/C/hello-world-text-3.c
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#include<stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
printf("\nHello world!");
|
||||
return 0;
|
||||
}
|
||||
6
Task/Hello-world-Text/C/hello-world-text-4.c
Normal file
6
Task/Hello-world-Text/C/hello-world-text-4.c
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include<stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
return printf("\nHello World!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue