Question:
Devise a structure declaration that describes a fish.The structure should include the kind, the weight in whole ounces, and the length in fractional inches.Answer:
struct fish {
char kind[20];
int weight;
float length;
};
0 Questions:
Post a Comment