반응형
//Microsoft Visual C++ 사용
#include "stdafx.h"
int aaa(int a, int b);
int main(void)
{
int i,j,k;
printf(" 숫자 두 개 입력: ");
scanf("%d %d",&i,&j);
k=aaa(i,j);
return 0;
}
int aaa(int a, int b)
{
int d;
d=a+b;
printf("%d + %d = %d \n",a,b,d);
return d;
}
반응형
'공부 > C언어' 카테고리의 다른 글
c언어 :: 10진법을 2진법으로 출력하는 방법2 (함수, if ) (0) | 2021.05.03 |
---|---|
c언어 :: 10진법을 2진법으로 출력하는 방법(함수,for) (0) | 2021.05.02 |
c언어 :: 문자열 오른쪽 정렬하여 출력하기(배열) (0) | 2021.04.30 |
C언어 :: 원하는 구구단 불러오기(함수, for, scanf); (0) | 2021.01.02 |
C 언어:: 모래시계 만들기( printf, if, for 함수) (0) | 2020.06.19 |