#include<stdio.h> #include <string.h> struct student { int roll_no; char name[30]; }; void main( ) { struct student s[3]; int i; s[0].roll_no = 1; ...
確定! 回上一頁