일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 마이크로서비스
- cloud
- DataFlow
- GCP
- 쿠버네티스
- cdk
- 클라우드 자격증
- 네트워크
- go
- Dataproc
- 머신러닝
- 구글 클라우드
- 구글클라우드
- 클라우드
- docker
- 코세라
- 딥러닝
- Associate
- 자격증
- 구글클라우드플랫폼
- AWS #빅데이터 #분석 #데이터
- 도커
- coursera
- golang
- aws
- Kubernest
- 구글클라우드서밋
- 구글
- nnictl
- Today
- Total
목록-프로그래밍 언어/C language (5)
JD의 블로그
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: whil..
[랜덤한 숫자에 따른 histogram 만들기] #include #include #include const int NUM=10, LB = 0, UB = 20; void star(int n) { while(n-- > 0) putchar('*'); } void histogram(int a[], int n) { int i; for (i = 0; i
#include #define MAX 100 int main() { int w, nwords[MAX] ={0}, i=0; while ((w=getchar())!=EOF) // Control + Z 누를 때까지 실행 { if (w==' '||w== '\t' || w=='\n') // 띄어쓰기, tab, 줄바꾸기하면 새로운 단어로 인식 ++i; else ++nwords[i]; // nwords[i]번째 단어의 내용을 입력시마다 횟수 올림 } for (i=0; i0; nwords[i]--) // nwords[i]의 값을 줄이며 0보다 클때만 * 출력 printf("*"); if(nwords[i+1]==0) // nwords array 다음 번에 단어가 있는지 없는지 판단 break; printf("\n"); ..
scanf : c language standrad input function 주소 형식의 데이터 형식에 영향 받지 않음. => int c = 0 , scanf("%c", &c) 라고 해도 가능. 이때 c에 저장된 값은 ASCII 값으로 변환된 정수값임. 안에 reference 데이터 형식에 따라 return 값 결정됨 scanf("%c", &char); => 정수, 문자 받으면 return 1, scanf("%d", &integer); => 정수 받으면 return 1, 문자 받으면 return 0