Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- scroll
- 셀렉트박스 커스텀
- angular modal
- Ionic modal
- 스크롤 이벤트
- Oracle LISTAGG 사용 예시
- 앵귤러 애니메이션
- 호버
- TAILWIND
- Angular Router
- summary
- modal
- formgroup
- mysql if
- 옵저버블
- 아이오닉 스크롤 이벤트
- ApexChart
- Router
- angular route
- prisma
- angular animation
- angular button
- 앵귤러 모달
- 스크롤 이벤트 감지
- egov spring ajax 사용 예시
- flex-1
- 모달
- ajax 사용 예시
- route
- 검색
Archives
- Today
- Total
깜놀하는 해므찌로
C언어 재귀함수 기본 예시 본문
반응형
SMALL
#include <stdio.h>
// 재귀함수 Recursive Function
int print(int count){
if(count == 0){
return 0;
}else{
printf("문자반복 \n");
print(count - 1); // 재귀함수 호출
}
}
int main(void){
int number;
printf("문자를 몇 번 반복할까요?");
scanf("%d", &number);
print(number);
return 0;
}
반응형
LIST
'IT' 카테고리의 다른 글
ApexChart Angular 사용 예시 (0) | 2023.04.23 |
---|---|
C언어 조합공식 + 재귀함수 사용 예시 (1) | 2023.04.22 |
Ionic modal resize 예시 (0) | 2023.04.21 |
git ssh 등록 예시 git@github.com: Permission denied (publickey). ssh keygen (0) | 2023.04.20 |
Can't bind to 'ngClass' since it isn't a known property of 해결 방법 (0) | 2023.04.20 |