c언어 express52 [쉽게 풀어 쓴 C언어 Express] 13장 프로그래밍 programming 솔루션 답지 쉽게 풀어 쓴 C언어 express 솔루션입니다. 1. (a) #include struct point { int x, y; } ; int equal(struct point p1, struct point p2); int main(void) { struct point p1= { 1, 2 } ; struct point p2= { 3, 5 } ; printf("일치 여부 = %d\n", equal(p1, p2)); return 0; } int equal(struct point p1, struct point p2) { if( p1.x == p2.x && p1.y == p2.y ) return 1; else return 0; } (b) #include struct point { int x, y; } ; int qu.. 2020. 4. 11. [쉽게 풀어 쓴 C언어 Express] 12장 프로그래밍 programming 솔루션 답지 쉽게 풀어 쓴 C언어 express 솔루션입니다. 1. #include int main(void) { char ch; printf("문자를 입력하시오: "); scanf("%c", &ch); printf("아스키 코드값=%d\n", ch); return 0; } 2. #include #include #define SIZE 100 void delete_space(char s[]) { char tmp[SIZE]; int i, k=0; for (i=0;i 2020. 4. 11. [쉽게 풀어 쓴 C언어 Express] 10장 프로그래밍 programming 솔루션 답지 1. #include int days[] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } ; int main(void) { int i; for (i=0; i 2020. 4. 11. [쉽게 풀어 쓴 C언어 Express] 9장 프로그래밍 programming 솔루션 답지 쉽게 풀어 쓴 C언어 express 솔루션입니다. 파일을 따로 준비해놨으니 필요하시다면 다운받아서 사용해주세요^^ 1. #include int add(int, int); int sub(int, int); int mul(int, int); int div(int, int); int main(void) { char op; int x, y; int i; for (i=0;i 2020. 4. 11. 이전 1 ··· 10 11 12 13 다음