C Program #include void main() { FILE *fptr; char name[20]; int age; float salary; fptr = fopen ("emp.txt", "w"); /*open for writing*/ if (fptr == NULL) ...
確定! 回上一頁