728x90
01.
#include <stdio.h>
int main()
{
printf("C Pascal Java Python Kotlin");
return 0;
}
02.
#include <stdio.h>
int main()
{
printf("C \nPascal \nJava \nPython \nKotlin");
return 0;
}
03.
#include <stdio.h>
int main()
{
puts("데니스 리치, 제임스 고슬링, 귀도 반 로섬");
return 0;
}
04.
#include <stdio.h>
int main()
{
puts("데니스 리치\n제임스 고슬링\n귀도 반 로섬");
return 0;
}
05.
#include <stdio.h>
int main()
{
printf("프로그램 개발 과정\n\n1. 프로그램 작성\n2. 소스 작성\n3. 빌드\n4. 실행");
return 0;
}
06.
#include <stdio.h>
int main()
{
puts("*\n**\n***\n****");
return 0;
}
728x90
'C Programming' 카테고리의 다른 글
[C언어로 배우는 프로그래밍 기초 Perfect 3판] Chapter 03 프로그래밍 연습 (0) | 2022.06.27 |
---|---|
[C언어로 배우는 프로그래밍 기초 Perfect 3판] Chapter 03 자료형과 변수 (0) | 2022.06.26 |
[C언어로 배우는 프로그래밍 기초 Perfect 3판] Chapter 01 연습문제 정답 (0) | 2022.06.26 |
[C] 포인터 기초, 포인터를 이용한 값 변환 (0) | 2022.02.14 |
[어서와 C언어는 처음이지!] P309 Lab (난수 생성 후 정렬) (0) | 2022.02.13 |