mirror of
https://gitlab.com/klmp200/LO27.git
synced 2024-11-05 16:08:04 +00:00
17 lines
497 B
C
17 lines
497 B
C
|
/*********************************************************************************
|
||
|
* File Name : main.c
|
||
|
* Created By : klmp200
|
||
|
* Creation Date : [2016-12-10 01:06]
|
||
|
* Last Modified : [2016-12-10 01:07]
|
||
|
* Description :
|
||
|
**********************************************************************************/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
printf("Hello World\n");
|
||
|
return 0;
|
||
|
}
|