Creative Code

hello.c(hello world출력) 본문

C Programming

hello.c(hello world출력)

빛하루 2023. 7. 31. 15:19
#include <stdio.h>

int main(void)
{
	printf("Hello, World\n");
	return 0;
}