유진 2019. 8. 24. 15:18
반응형
#include<stdio.h>
FuncA()
{
	printf("C ");
} 

int main()
{
	printf("든든한");
	FuncA();
	printf("프로그래밍!!!");
	
	return 0; 
}
/*
든든한C 프로그래밍!!!
--------------------------------
Process exited after 0.01029 seconds with return value 0
계속하려면 아무 키나 누르십시오 . . .
*/
반응형