반응형
#include<stdio.h>
FuncA()
{
	printf("든든한 ");
}
FuncB()
{
	printf(" !!!\n");
} 
int main()
{
	FuncA();
	printf("C");
	printf("프로그래밍"); 
	FuncB();
	
	return 0; 
}
/*
든든한 C프로그래밍 !!!

--------------------------------
Process exited after 0.01091 seconds with return value 0
계속하려면 아무 키나 누르십시오 . . .
*/
반응형

'C, C++ > 든든한 c programming 단계별 workbook' 카테고리의 다른 글

Chapter 3 초급 2  (0) 2019.08.24
Chapter3 초급 1  (0) 2019.08.24
Chapter2 고급 1  (0) 2019.08.24
Chapter 2 중급 2  (0) 2019.08.24
Chapter2 중급 1  (0) 2019.08.24

+ Recent posts