Creative Code

hello7.c(문자열 배열-포인터) 본문

C Programming

hello7.c(문자열 배열-포인터)

빛하루 2023. 8. 8. 09:52
#include <stdio.h>

int main(void)
{
	char *str = "hello, world";
	printf("%s\n",str);
	return 0;
}