본문 바로가기

C- Programming/변수와 자료형

OperatorTwo.c

#include <stdio.h>

int main()

{

int num1=2, num2=4, num3=6; //변수 선언 및 초기화

num1 +=3; //num1=num1+3

num2 *= 4; //num2=num2*4

num3 %= 5; //num3=num3%5

printf("Result : %d, %d, %d \n", num1, num2, num30;

return 0;

}

 

 

실행결과 : OperatorTwo.c

Result : 5, 16, 1

 

 

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

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