1. ๋จ์ด ์ถ๋ ฅ
- C์ธ์ด์์ ์ถ๋ ฅ์ ๊ฒฝ์ฐ printf๋ผ๋ ํจ์๋ฅผ ์ฌ์ฉ
- printf ํจ์ ์์ ๋ฌธ์์ด์ ๋ฃ๊ฒ ๋๋ฉด, ํด๋น ๋ฌธ์์ด์ด ํ๋ฉด์ ์ถ๋ ฅ
- ๋ฌธ์์ด์ ํฐ๋ฐ์ดํ๋ฅผ ์ด์ฉํ์ฌ ํํ
- printf ํจ์๋ stdio.h ๋ผ๋ ํค๋๋ฅผ ์ฝ๋ ์๋จ์ ํฌํจ์์ผ์ผ ์ฌ์ฉ๊ฐ๋ฅ
printf("Hello");
โถ ๋ฌธ์ : Hello๋ฅผ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด๋ณด์ธ์.
#include <stdio.h>
int main() {
printf("Hello");
return 0;
}
2. ๋ฌธ์ฅ ์ถ๋ ฅ
- C์์ ๋ฌธ์ฅ์ ์ถ๋ ฅํ ๋๋, ํฐ๋ฐ์ดํ๋ฅผ ์ฌ์ฉํด์ผ ํ๋ค.
printf("Hello World!");
โถ๋ฌธ์ : Hello World! ๋ฅผ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด๋ณด์ธ์.
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
3. ๋ฐ์ดํ ์ถ๋ ฅ
- ๋ฌธ์์ด์ "๋ฅผ ๋ฌธ์๋ก์ ํฌํจ์ํค๊ธฐ ์ํด์๋ ํด๋น ๋ฌธ์ ์์ \๋ฅผ ๋ถ์ฌ์ผ ํ๋ค.
#include <stdio.h>
int main() {
printf("\"Hello\"");
return 0;
}
โถ๋ฌธ์ : He says "It's a really simple sentence". ๋ฅผ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด๋ณด์ธ์.
#include <stdio.h>
int main() {
printf("He says \"It's a really simple sentence\".");
return 0;
}
4. 2์ค ์ถ๋ ฅ
- c์์ ์ค๋ฐ๊ฟ์ ์ถ๋ ฅํ๊ธฐ ์ํด์๋, \n ๋ฌธ์๋ฅผ ์ด์ฉ
- \n ๋ฌธ์๋ new line์ ์๋ฏธํ๋ ํน์๋ฌธ์๋ก, ํ ์ค์ ๋๋ค๋ ๊ฒ์ ๋ํ๋ ๋๋ค.
#include <stdio.h>
int main() {
printf("Hello World");
printf("\n");
printf("C is Fun");
return 0;
}
#include <stdio.h>
int main() {
printf("Hello World\nC is Fun");
return 0;
}
โถ๋ฌธ์ :
Hello
World
๋ฅผ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด๋ณด์ธ์.
#include <stdio.h>
int main() {
printf("Hello\nWorld");
return 0;
}
5. ์ซ์ ์ถ๋ ฅํ๊ธฐ
- printf ๋ฅผ ์ด์ฉํ์ฌ ์ซ์(int)๋ฅผ ์ถ๋ ฅํด์ฃผ๋ ค๋ฉด " "๋ฌธ์์ด ๋ด์ ๋ณ์ ํฌ๋งท %d ๋ฅผ ์ง์ ํด์ฃผ์ด์ผ ํฉ๋๋ค.
- printf("%d", ํฌ๋งท์ ๋์ํ๋ ์ซ์ ๋ณ์)
#include <stdio.h>
int main() {
printf("%d", 3);
return 0;
}
#include <stdio.h>
int main() {
printf("3");
return 0;
}
โถ๋ฌธ์ : ์ซ์ 3์ ์ถ๋ ฅํฉ๋๋ค.
#include <stdio.h>
int main() {
printf("%d",3);
return 0;
}
6. ์ซ์ 2๊ฐ ์ถ๋ ฅ
- 2๊ฐ์ ๊ฐ์ ๊ณต๋ฐฑ์ ์ฌ์ด์ ๋๊ณ ์ถ๋ ฅํ๊ธฐ ์ํด์๋ printf ํจ์๋ฅผ ์ด์ฉํด " " ๋ฌธ์์ด ๋ด ๋ ๊ฐ์ ๊ณต๋ฐฑ์ ์ฌ์ด์ ๋๊ณ ์ถ๋ ฅํด์ฃผ๋ฉด ๋ฉ๋๋ค.
#include <stdio.h>
int main() {
printf("3 5");
return 0;
}
- ์ซ์๊ฐ ๋๊ฐ์ด๋ฏ๋ก, ์ซ์ ๋ณ์ ํฌ๋งท %d๋ฅผ ๋๊ฐ ์จ์ฃผ๊ณ , ์ค๊ฐ์ ๊ณต๋ฐฑ์ ๋ฃ์ด์ค๋๋ค. ๊ฐ๊ฐ์ ์ซ์๋ ์์๋๋ก ํด๋น ์์น์ ๋ณ์ ํฌ๋งท์ ๋์๋ฉ๋๋ค.
#include <stdio.h>
int main() {
printf("%d %d", 3, 5);
return 0;
}
โถ๋ฌธ์ : ์ซ์ 3๊ณผ 5๋ฅผ ๊ฐ๊ฐ ๊ณต๋ฐฑ์ ์ฌ์ด์ ๋๊ณ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด๋ณด์ธ์.
#include <stdio.h>
int main() {
printf("%d %d",3,5);
return 0;
}
7. ํ์ค ์ถ๋ ฅ
โถ๋ฌธ์ : Let's go LeebrosCode!๋ฅผ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด๋ณด์ธ์.
#include <stdio.h>
int main() {
printf("Let's go LeebrosCode!");
return 0;
}
8. ๋์ค ์ถ๋ ฅ
โถ๋ฌธ์ :
Hello students!
Welcome to LeebrosCode!
๋ฅผ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด๋ณด์ธ์.
#include <stdio.h>
int main() {
printf("Hello students!\n");
printf("Welcome to LeebrosCode!");
return 0;
}
9. ๋ค์ํ๊ฒ ์ถ๋ ฅ
โถ๋ฌธ์ :
Total days in Year
365
Circumference rate
3.1415926535
๋ฅผ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํด๋ณด์ธ์.
#include <stdio.h>
int main() {
printf("Total days in Year\n");
printf("%d\n",365);
printf("Circumference rate\n");
printf("3.1415926535");
return 0;
}