I am new to Xcode and I an currently learning C. How does file opening work here?
When I was using Windows and I declared that I want to write to file e.g.:
FILE *fr;
fr = fopen("test.txt","w");
it created file if it did not exist. But here in Mac I don't see file anywhere.
Any help about where will file be created on mac would be really appreciated.