본문 바로가기

C- Programming/변수와 자료형

SimpleAddTwo.c

#include <stdioh>

int main()

{

int num1=3; //변수 선언 및 초기화

int num2=4; //변수 선언 및 초기화

 

int result=-num1+num2; // result 라는 변수 선언 하고 앞에서 선언한 변수의 합으로 초기화

 

printf("덧셈 결과 : %d \n", result); //덧셈 결과를 보여줌

printf("%d+%d=%d \n", num1, num2, result);

printf("%d와 %d의 합은 %d 입니다. \n", num1, num2 ,result);

return 0;

}

 

실행결과 : SimpldAddTwo.c

덧셈 결과 : 7

3+4=7

3와 4의 합은 7입니다.

 

 

'C- Programming > 변수와 자료형' 카테고리의 다른 글

OperatorFour.c  (0) 2013.06.25
OperatorThree.c  (0) 2013.06.25
OperatorTwo.c  (0) 2013.06.25
OperatorOne.c  (0) 2013.06.25
VarDeclAndinit.c  (0) 2013.06.25