Hello World

C Edition

1
2
3
4
5
6
7
#include <stdio.h>

int main(void)
{
printf("Hello World\n");
return 0;
}

CPP Edition

1
2
3
4
5
6
7
8
#include <iostream>
using namespace std;

int main()
{
cout << "Hello World!" << endl;
return 0;
}
Author: sphc
Link: https://jkuvw.xyz/archives/4a17b156/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
微信打赏
支付宝打赏