C Programming
hello9.c(hello world출력)
빛하루
2023. 7. 31. 15:19
#include <stdio.h>
int main(void)
{
fprintf(stdout,"Hello,World\n");
return 0;
}