mirror of
https://github.com/m1ngsama/code4sk.git
synced 2025-12-24 10:51:22 +00:00
8 lines
93 B
C++
8 lines
93 B
C++
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("Hello World!");
|
|
return 0;
|
|
}
|