#include <stdio.h> int main() { FILE* ptr = fopen("test.txt","r"); char* buf[100]; while (fscanf(ptr,"%*s %*s %*s ",buf)==1) printf("%s\n", ...
確定! 回上一頁