Data update
This commit is contained in:
parent
52a6ef48dd
commit
157b70a810
604 changed files with 14253 additions and 2100 deletions
|
|
@ -1,8 +1,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include<stdio.h>
|
||||
|
||||
int main(void)
|
||||
int main()
|
||||
{
|
||||
printf("Hello world!\n");
|
||||
return EXIT_SUCCESS;
|
||||
printf("\nHello world!");
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include<stdio.h>
|
||||
|
||||
int main(void)
|
||||
int main()
|
||||
{
|
||||
puts("Hello world!");
|
||||
return EXIT_SUCCESS;
|
||||
return printf("\nHello World!");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
#include<stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
int main(void)
|
||||
{
|
||||
printf("\nHello world!");
|
||||
return 0;
|
||||
printf("Hello world!\n");
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
#include<stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
int main(void)
|
||||
{
|
||||
return printf("\nHello World!");
|
||||
puts("Hello world!");
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue