#include main(){ FILE *f; char str[200]; f = fopen("curso2005file","r"); fscanf(f, "%s",str); fclose(f); printf("%s",str); }