IT정보

C언어 처음 시작 Hello World 코드 출력

바우우 2020. 11. 9. 16:05

#include <stdio.h>

 

int main()

{

     printf("Hello World!");

     return 0;

}