본문 바로가기
c언어/정올

[정올] #502 출력 - 자가진단2(c언어)

by ilp 2024. 2. 26.
반응형

https://www.jungol.co.kr/problem/502?cursor=eyJwcm9ibGVtc2V0IjoiMiIsImZpZWxkIjowLCJpZHgiOjN9

 

JUNGOL

code_blocks 코드 보기

www.jungol.co.kr



#include <stdio.h>

int main() {
	printf("Programming! It's fun.");
	return 0;
}
1. 출력
  • "Programming! It's fun."를 출력한다.

반응형