#include int main(){ FILE *fp=NULL; fp = fopen("tekst.txt", "r"); if(fp == NULL){ printf("-1\n"); return 1; } fclose(fp); return 0; }