#include #include void nagybetu(char *, char *[], int); int main() { char *t[] = {"valami", "Ez egy mondat.", "Kell ez?"}; FILE *f; int c; nagybetu("kimenet.txt", t, 3); f = fopen("kimenet.txt", "r"); while ((c = fgetc(f)) != EOF) putchar(c); fclose(f); return EXIT_SUCCESS; }