2020. 4. 15.

[c] 인프런 8. printf 강의 정리


int add 에는 3+7 10 들어있다.
첫줄 프린트는 add %d 불러낸것이고
두번째 프린트는 세개의 %d , 뒤에 있는 숫자들을 순서대로 넣은것이다.


#include<stdio.h>
int main(void)
{
//printf
//연산
int add = 3 + 7; // 10
printf("3 + 7 = %d\n", add);
printf("%d + %d = %d\n", 3, 7, 3 + 7);

return 0;
}


코드 안에서 +, -, *, / 연산이 가능하다.


#include<stdio.h>
int main(void)
{
//printf
//연산
int add = 3 + 7; // 10

printf("%d + %d = %d\n", 30, 79, 30 + 79);
printf("%d X %d = %d\n", 30, 79, 30 * 79);

return 0;
}



댓글 없음:

댓글 쓰기