실습예제
  • Curriculum
Total 4 of lesson
N title

레슨 N개

1 강의소개
Video
2 클라우드 IDE
PDF
3 C프로그램이란?
PDF
4 실습예제
Text
드래그바
*Please reload this page if you see this screen for more than 10seconds
Content
File


printf("100");


printf("%d", 100);






오른쪽 에디터 창에 위의 코드를 쓰고 실행 버튼을 눌러봅시다.


Ctl+C, Ctl+V 해서 복붙도 가능합니다.

결과가 100, 100 나왔나요?


알고 있었나요? 같은 결과 같지만 두 개의 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