Study/C · C++
[ C ] Hello, World 작성하기 - 001
ETFactory
2024. 11. 3. 12:03
#include <stdio.h>
int main(void) {
printf("Hello World\n");
return 0;
}