I could not see my text file at my files when I tried to write my code with
#include <stdlib.h>
int main(void){
FILE *file;
char name[]="watch";
dosya=fopen("watch.txt" , "w");
fprintf(file, "This file made for %s.",name);
fclose(file);
}
Where can I find my text file.