这个问题求解答
程序代码:
void chaxun_y() { int i; char ch[2]; char num[50], name[50], sex[50], type[50], state[50], tel[50]; FILE * fp; system("cls"); if ((fp = fopen("zengjia_y.txt", "r")) == NULL) { printf("File open error!\n"); exit(0); } printf("%s\t%s\t%s\t%s\t%s\t%s", num, name, sex, type, state, tel); printf("\t\t\t\t\t按任意键返回"); getch(); //按任意键返回 yuangong(); if (fclose(fp)) { printf("Can not close the file!\n"); exit(0); } }
这个是其中一个模块 是查询员工的功能 我输出显示在屏幕上的怎么是乱码,求解答,还有我的程序有哪里还有写错的吗