#include <stdio.h>

//#define scanf scanf_s
int main(void)
{
 int a,b;
 printf("두 개의 정수 입력: ");
 scanf("%d %d", &a, &b);

 printf("뺄셈 결과:$d\n", a-b);
 printf("덧셈 결과:$d\n", a+b);
 return 0;
}
여기는 제가 작성한 소스인데 ㅠㅠ
컴파일하면 저러면서 실행하면 배치파일을 못찾겠다네요......

1>------ 빌드 시작: 프로젝트: hello, 구성: Debug Win32 ------
1>빌드 시작: 2012-02-22 오후 6:00:01
1>InitializeBuildStatus:
1>  "Debug\hello.unsuccessfulbuild"에 연결(touching)하고 있습니다.
1>ClCompile:
1>  모든 출력이 최신 상태입니다.
1>ManifestResourceCompile:
1>  모든 출력이 최신 상태입니다.
1>hello.obj : error LNK2005: _main이(가) 1.obj에 이미 정의되어 있습니다.
1>hello2.obj : error LNK2005: _main이(가) 1.obj에 이미 정의되어 있습니다.
1>plus and mibus.obj : error LNK2005: _main이(가) 1.obj에 이미 정의되어 있습니다.
1>c:\documents and settings\msi gf615m\my documents\visual studio 2010\Projects\hello\Debug\hello.exe : fatal error LNK1169: 여러 번 정의된 기호가 있습니다.
1>
1>빌드하지 못했습니다.
1>
1>경과 시간: 00:00:01.04
========== 빌드: 성공 0, 실패 1, 최신 0, 생략 0 ==========