Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- BOJ
- BFS
- dfs
- 인프런
- JavaScript
- greedy
- C
- Algospot
- String
- DP
- Cleancode
- 따배씨
- C언어
- Algorithm
- 백준
- 따라하면서 배우는 C언어
- 생활코딩
- server
- udemy
- php
- 정수론
- Math
- Python
- graph
- programmers
- web
- sorting
- 종만북
- 따라하며 배우는 C언어
- BASIC
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 2.6 printf() 함수의 기본적인 사용법 본문
따배씨 - 따라하며 배우는 C언어
2강 C언어를 소개합니다
2.6 printf() 함수의 기본적인 사용법
- 입력 -> printf(...) -> 출력
int main(){
printf("The truth is ... I am Iroman.");
return 0;
}
- Error 발생
- Implicitly declaring library function 'printf' with type 'int (const char *, ...)'
- 전처리기 가 필요
#include <stdio.h>
int main(){
printf("The truth is ... I am Iroman.");
return 0;
}
- 출력
- The truth is ... I am Iroman.
- printf: print formatted
- printf("...", ...)
- 줄바꿈: \ n
- 따움표(""): \ "
- 알람소리: \ a
#include <stdio.h>
int main(){
int x, y, z;
x = 1;
y = 4;
z = x + y;
printf("The answer is 1+4");
// 1+4는 컴퓨터 입장에서 문자
printf("The answer is %i", 7);
printf("The answer is %i", 1+4);
// printf 함수의 인트형의 출력 format 은 %i와 그 값으로 이루어짐
return 0;
}
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 2.9 함수 만들기 (0) | 2021.05.09 |
---|---|
[따배씨] 2.7 주석 다는 방법 ~ 2.8 키워드와 예약어 (0) | 2021.05.09 |
[따배씨] 2.1 C 의 해부학 ~ 2.5 변수를 선언 declaration 하는 방법 (0) | 2021.05.09 |
[따배씨] 1.4 소프트웨어 개발의 7가지 단계 ~ 1강 완료 (0) | 2021.05.07 |
[따배씨] 1.3 C언어의 표준 (0) | 2021.05.07 |
Comments