chapter 8 홍정모 교수님 따라배우는 C


chapter 8 홍정모 교수님  따라배우는 C

#본문의 저작권은 인프런과 홍정모 교수님께 있습니다.#본문의 목적은 강의 복습 및 단순 참고용 입니다.//9.1 9.2함수가 필요할 때// 함수의 프로토타입/***************Jeong-Mo HongSeoul, Korea***************/#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>#include <string.h> // strlen()#include <stdbool.h>#define WIDTH 20 // menifast constant #define NAME "Jeong-MO Hong"#define ADDRESS "Seoul, Korea"// 함수를 써여하는곳 1. 기능을 확장할 때. 2. 기능이 반복해서 나타날때void print_bar(int n_stars) // n_stars는 입력받을 별의 개수 printf bar함수 정의{for (int ..........



원문링크 : chapter 8 홍정모 교수님 따라배우는 C