레슨 N개
printf("100");
printf("%d", 100);
오른쪽 에디터 창에 위의 코드를 쓰고 실행 버튼을 눌러봅시다.
Type input. (put space between input numbers.)
ex: scanf("%d %d %d", &a, &b, &c);
1␣2␣3
ex: scanf("%d %d", &a, &b);
1␣2
ex: scanf("%d", &a);
1