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
- udemy
- DP
- greedy
- 따라하면서 배우는 C언어
- 백준
- Algospot
- JavaScript
- server
- graph
- 따배씨
- C
- programmers
- String
- Math
- BFS
- php
- Python
- web
- 생활코딩
- BOJ
- 종만북
- BASIC
- Cleancode
- 따라하며 배우는 C언어
- Algorithm
- 정수론
- sorting
- C언어
- 인프런
- dfs
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 14.8 구조체와 함수 연습문제 본문
따배씨 - 따라하며 배우는 C언어
14강 구조체_1
14.8 구조체와 함수 연습문제
#include <stdio.h>
#include <string.h>
#define NLEN 30
struct name_count
{
char first[NLEN];
char last[NLEN];
int num;
};
void receive_input(struct name_count*);
void count_charaters(struct name_count*);
void show_result(const struct name_count*);
char* s_gets(char* st, int n);
int main()
{
struct name_count user_name;
receive_input(&user_name);
count_charaters(&user_name);
show_result(&user_name);
return 0;
}
void receive_input(struct name_count* user_name)
{
int flag;
printf("Input your first name :\n>> ");
// s_gets(user_name->first, NLEN);
flag = scanf("%[^\n]%*c", user_name->first); // ^ : cap operator
// scanf 로 s_gets 를 대체
// "%[^\n]%*c" 줄바꿈 기호 하나를 무시하고 입력 받음
if (flag != 1)
printf("Wrong input");
printf("Input your last name :\n>> ");
// s_gets(user_name->last, NLEN);
flag = scanf("%[^\n]%*c", user_name->last);
if (flag != 1)
printf("Wrong input");
}
void count_charaters(struct name_count* user_name)
{
user_name->num = (int)(strlen(user_name->first) + strlen(user_name->last));
}
void show_result(const struct name_count* user_name)
{
const char* formmated = "Hi, %s %s.\nYour name has %d characters.\n";
printf(formmated, user_name->first, user_name->last, user_name->num);
}
char* s_gets(char* st, int n)
{
char* ret_val;
char* find;
ret_val = fgets(st, n, stdin);
if (ret_val)
{
find = strchr(st, '\n'); // look for newline
if (find) // if the address is not NULL
* find = '\0'; // place a null characgter there
else
while(getchar() != '\n')
continue; // dispose of rest of line
}
return ret_val;
}
flag = scanf("%[^\n]%*c", user_name->first); //
- scanf 로 s_gets 를 대체
- [^\n]%*c 줄바꿈 기호 하나를 무시하고 입력 받음
- ^ : cap operator
#include <stdio.h>
#include <string.h>
#define NLEN 30
struct name_count
{
char first[NLEN];
char last[NLEN];
int num;
};
struct name_count receive_input();
struct name_count count_characters(struct name_count);
void show_result (const struct name_count);
char* s_gets(char * st, int n);
int main()
{
struct name_count user_name;
user_name = receive_input();
user_name = count_characters(user_name);
show_result(user_name);
return 0;
}
struct name_count receive_input()
{
struct name_count nc;
printf("Input your first name\n>>");
s_gets(nc.first, NLEN);
printf("Input your last name:\n>>");
s_gets(nc.last, NLEN);
return nc;
}
struct name_count count_characters(struct name_count nc)
{
nc.num = (int)(strlen(nc.first) + strlen(nc.last));
return nc;
}
void show_result (const struct name_count nc)
{
printf("Hi, %s %s. Your name contains %d characters.\n", nc.first, nc.last, nc.num);
}
char* s_gets(char* st, int n)
{
char* ret_val;
char* find;
ret_val = fgets(st, n, stdin);
if (ret_val)
{
find = strchr(st, '\n'); // look for newline
if (find) // if the address is not NULL
* find = '\0'; // place a null characgter there
else
while(getchar() != '\n')
continue; // dispose of rest of line
}
return ret_val;
}
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 14.10 복합 리터럴 (0) | 2021.06.26 |
---|---|
[따배씨] 14.9 구조체와 할당 메모리 (0) | 2021.06.26 |
[따배씨] 14.4 구조체의 배열 연습 문제 (0) | 2021.06.22 |
[따배씨] 14.4 구조체의 메모리 할당 (0) | 2021.06.22 |
[따배씨] 14.2 구조체의 기본적인 사용법 (0) | 2021.06.22 |
Comments