컴퓨터/C
C hello, world!
sayyesdoit
2022. 10. 14. 15:44
#include <stdio.h>
int main()
{
printf("Hello, world!\n");
return 0;
}