Hong Jung-mo's Follow Along and Learn C Programming
This is an introductory programming course starting with C language, newly developed thanks to the support of 'Following C++'. Upgrade your programming life with 'Following C'.

- Unresolved
Visual Studio Community 2026 사용 문의
안녕하세요.이번에 C언어 공부하려고 Visual Studio Community 설치하려고했는데, 버전들이 많이 바뀐 거 같아서 문의드리려고합니다. <p style="text-align
cshwlsrn218930
・
14 days ago
1
58
2
- Unresolved
Q. 15:30, 부호가 있는 8비트 정수 질문
안녕하세요 교수님, 비트열 1001 1110을 보면2의 보수 signed(8비트)</str
cshwlsrn218930
・
16 days ago
1
41
2
- Unresolved
getchar(), putchar()
#include int main(){<p style="text-alig
ccmh20834434
・
20 days ago
1
54
3
- Unresolved
강의자리ㅛ
혹시 강의자료 PDF는 제공이 되지않나요?ㅠㅠ PPT파일에다가 필기를 하면 좋을거같은데..
cddanguri20003955
・
a month ago
1
58
2
- Unresolved
비주얼스튜디오코드로 공부해도 상관없나요?
차이가 있는지 궁금합니다
cjwchung71548
・
2 months ago
1
86
2
- Unresolved
소스파일안에 여러 파일
솔루션 파일안에 여러 프로젝트 파일을 만들듯이 프로젝트 파일안에 여러 소스파일을 만들어서 코딩을 진행해도 문제가 없는지 궁금합니다
cisg0608s
・
2 months ago
1
58
2
- Unresolved
F5와 F7의 차이
C언어에서 코드를 빌드하는 단축키가 F5, 컴파일하여 결과물을 볼 수 있는 단축키가 F7이정도로 이해하였습니다. <p style="t
cisg0608s
・
2 months ago
1
48
2
- Unresolved
c = TWO * (a+b); 에서 a와 b는?
63강 강의 12분 쯤L/R Value 에 대해 예시에서 설명해주셨습니다. <p styl
cgju043191359
・
2 months ago
1
40
2
- Unresolved
; 세미콜론을 붙이는 기준에 문의
강의 5분쯤 ; 세미콜론에 대해 간단하게 설명해 주셨습니다. 제가 이해한 내용으로는 "문장"을 마칠 때 세미콜론을 붙인다 라고 이해를 했습니
cgju043191359
・
2 months ago
1
43
1
- Unresolved
Step over 기능 문의
Step over의 정확한 기능이 이해가 되지 않아 문의드립니다. 강의 내용 중, F10은 들여다보지는 않고 실행 만을 시킨다고 표현하셨는데
cgju043191359
・
2 months ago
1
41
2
- Unresolved
2.6 강의 따옴표 출력 규칙 문의
printf 함수 사용 시, 따옴표도 함께 출력하려면 하기 규칙이 맞나요..? printf("\" 내용<span style="color: #
cgju043191359
・
2 months ago
1
59
2
- Unresolved
int main 함수 관련 오류 문의
지난 번 , 2.5 변수 선언 예제를 위한 소스코드 파일 을 생성한 후 2.6 printf 함수 예제를 위해, 동일한 project 내 새로
cgju043191359
・
2 months ago
1
55
2
- Unresolved
13.4 words[0]
while ((fscanf(stdin, "%30s", words) == 1) && (words[0] != '.')) fprintf(fp, "%s\n", words);<p sty
cwjdwn5359494
・
2 months ago
0
51
2
- Resolved
11.7 함수를 구현해 봤습니다.
void swap(int* xp, int* yp) { const int tmp = *xp; *xp = *yp; *yp = tmp; }<code class="language-c"
cwjdwn5359494
・
2 months ago
1
47
2
- Resolved
11.6 직접 strcmp와 strncmp를 구현해 보았습니다.
void fit_str(char* str, unsigned int loc) { str[loc] = '\0'; for (; loc < strlen(str) ; loc++) str[loc] = '\0'; }
cwjdwn5359494
・
2 months ago
1
49
2
- Resolved
11.6 my_strcat과 my_strncat을 구현해봤습니다.
void my_strcat(char* str1, char* str2) { char* st1 = str1; st1 = st1 + strlen(st1); for (int i = 0; *(str2 + i) !=
cwjdwn5359494
・
2 months ago
1
42
2
- Resolved
11.6 fit_str함수를 구현해 봤습니다.
void fit_str(char* str, unsigned int loc) { str[loc] = '\0'; for (; loc + 1 < strlen(str) + 1; loc++) str[loc] = '
cwjdwn5359494
・
2 months ago
1
42
2
- Resolved
11.5 코드 구현
void custom_put(const char* str) { int i = 0; while (putchar(*(str + i)) != '\0') i++; } int custom_put2(const char*
cwjdwn5359494
・
2 months ago
1
46
2
- Resolved
C언어 엔터
char greeting[50] = "Hello, and" " How are" " you" " today!";에서 " you"와 " tod
cwjdwn5359494
・
2 months ago
1
50
2
- Resolved
포인터와 변수
포인터와 변수의 타입을 맞춰야하는 이유는 무엇입니까? 예를 들어 int a = 7; 이면 int* a_ptr = &a; 처럼 타입을 맞추는 이유는 무엇입니까?
cwjdwn5359494
・
3 months ago
1
57
2

