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 |
Tags
- Dataproc
- GCP
- Kubernest
- docker
- 구글클라우드플랫폼
- 마이크로서비스
- 쿠버네티스
- 구글 클라우드
- 구글
- aws
- cdk
- nnictl
- 코세라
- 구글클라우드서밋
- 자격증
- 구글클라우드
- cloud
- 네트워크
- coursera
- 딥러닝
- go
- 클라우드 자격증
- Associate
- 도커
- 클라우드
- golang
- DataFlow
- AWS #빅데이터 #분석 #데이터
- 머신러닝
Archives
- Today
- Total
JD의 블로그
[C language] Reading a File to the End 본문
Formatted Input
Check the return value of scanf in a while loop:
while (scanf("%d", &n) == 1)
Do not use !=, but use == for the condition.
=> " "를 기준으로 다른 명령문을 처리함.
e.g )
while(scanf("%s", word) == 1)
{
if (isalpha(word[0]))
{ printf("%c", upper(word[0])) }
}
I am two apples => IATA (맨 앞 글자만 대문자로 바꿔줌)
Character-Based Input
Check the return value of getchar against EOF in a while loop:
while ((c = getchar()) != EOF)
The type of the variable should be int.
Line-Based Input
Check the return value of gets_s against NULL in a while loop:
while (gets_s(buf, sz) != NULL)
The function gets_s is a safe version of gets (C11).
'-프로그래밍 언어 > C language' 카테고리의 다른 글
[C language] array and rand (0) | 2019.06.09 |
---|---|
[C language] Printing a histogram of the lengths of words (0) | 2019.06.07 |
[C language] scanf (0) | 2019.06.07 |
[C language] EOF (0) | 2019.06.07 |