상세 컨텐츠

본문 제목

c 함수 반환값

c언어

by bumychoi 2025. 3. 3. 12:51

본문

#include<stdio.h>

void function_without_return();
int f_return();

int main(void) {
function_without_return();
int ret;
ret=f_return();
p(ret);
return 0;
}

void function_without_return() {
printf("반환값이 없는 함수입니다.\n");
}

int f_return() {
printf("반환값이 있는 함수입니다.\n");
return 10;
}

void p(int num) {
printf("%d", num);
}


'c언어' 카테고리의 다른 글

c언어 array  (0) 2025.03.15
비밀번호 마스터 c언어(함수)  (0) 2025.03.14
c 숫자 맞추기  (0) 2025.03.03
피라미드 2  (0) 2025.02.28
피라미드 만들기  (0) 2025.02.28

관련글 더보기