제가 함수에 눈이 번쩍 뜨여가지고
함수를 이용해서 이거 저거 짜보는데 말입니다.
#include <stdio.h>
int Sum(int a,int b,int c)
{
c=a+b;
printf(\"%d\",c);
return 0;
}
int Minus(int a,int b,int c)
{
c=a-b;
printf(\"%d\",c);
return 0;
}
void main()
{
int One,Two,Three;
Sum(One,Two,Three);
}
이 코드에서
실행적인 에러는 뜨지 않는데
내부에서 에러가 뜹니다
아마 One Two Three 이거에 대해서 인거 같은데요
해결해주세요 -ㅅ-;
Give value anything to declared type.
이런 제가 멍청하게도 변수에 수를 안집어 넣었군요 -ㅅ-