반응형
#include<stdio.h>
FuncA()
{
	printf("C ");
} 

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

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

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

+ Recent posts