c语言中导入txt数据并运算,怎么将txt中带逗号的数据导入定义好的数据结构中...
该楼层疑似违规已被系统折叠隐藏此楼查看此楼#include #include struct student{int phone[12];int grade[4];int sno[11];char sname[8];char sex[5];};int main(){struct student *v = NULL;FILE *fp=fopen("G://new.txt","r");if(fp==N...