C언어 본색 파트3 Chapter 5 연습문제 솔루션
1번 #include "part3_ch5_prob1_myheader.h" void main () { double a = 10, b = 3; printf("add: %lf\n", add(10, 3)); printf("sub: %lf\n", sub(10, 3)); printf("mul: %lf\n", mul(10, 3)); printf("div: %lf\n", div(10, 3)); } myheader #include "part3_ch5_prob1_myheader.h" double add (double a, double b) { return a+b; } double sub (double a, double b) { return a-b; } double mul (double a, double b) { retur..
2021. 5. 31.
C언어 본색 파트2 Chapter 5 연습문제 솔루션
1번 #include void func(char a, char *b, int c, double d); int main () { char c = 'A'; char *str = "ABCD"; int num1 = 10; double num2 = 3.14; func(c, str, num1, num2); return 0; } void func(char a, char *b, int c, double d) { printf("%c %s %d %.2lf\n", a, b, c, d); } 2번 #include void func(int *p1, int (*p2)[2]); int main () { int array1[4] = {10, 20, 30, 40}; int array2[2][2] = {50, 60, 70, 80}; f..
2021. 5. 31.
C언어 본색 파트2 Chapter 4 연습문제 솔루션
// 파트2 4장 1번문제 #include int main () { int array[5] = {10, 30, 40, 30, 20}; int *p = NULL; int i, sum; p = array; for (i = 0, sum = 0; i < 5; i++) sum += *(p + i); printf("배열의 총 합은 %d 입니다.\n", sum); return 0; } // 파트2 4장 2번문제 #include int main () { int array[5] = {10, 20, 30, 40, 50}; int *p = NULL; p = array; printf("%d %d %d %d %d\n", p[0], p[1], p[2], p[3], p[4], p[5]); printf("%d %d %d %d %d\..
2021. 5. 31.