#include<stdio.h> int main(){ int a, b; scanf("%d %d", &a, &b); printf("%d", a+b); return 0; }
%d는 4byte 정수값을 입력받는다.
scanf 함수에 있는 &의 의미: 변수 앞에 &를 쓰면 해당 변수의 주소를 가리키게 된다.
댓글을 작성해보세요.