#include "stdio.h" int main() { struct student{ int age; int class_; }; struct class2{ struct student s1; }; struct class2 *c; struct class2 cc={ .s1={ ...
確定! 回上一頁