Search found 1 match

by s201720963
Wed Nov 29, 2017 12:44 am
Forum: 수업 게시판
Topic: 코드 오류
Replies: 1
Views: 8606

코드 오류

1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 5 #define storage 5 6 struct human ary[storage]; 7 8 typedef struct{ 9 double weight[20]; 10 double height[20]; 11 }human; 12 13 //int window(); 14 void window_operate(); 15 void BMI(); 16 void calorie(); 17 void food_calender(); 18...