#include #include FILE *fp; char c; int a; int oldmain() { fp = fopen("test.txt", "r"); while (!feof(fp)) { c = fgetc(fp); printf("%c", c); } fclose(fp); printf("\nSEPARATOR\n\n"); for (uint8_t i = 0; i <= 10; i++) { printf("hello %i times\n", i); } printf("\nSEPARATOR\n\n"); printf("Zadajte integer:"); scanf("%d", &a); printf("Zadali ste %d.", a); return 0; }