Hello, I've been practicing writing small programs, but now I'm finding that whenever I try to run it, it runs, but half-way into the program Windows displays the (myprogram has encountered a problem and has to close). Here's my code for reference: Code: #include #include int main() { char *filename; printf("Please enter the filename"); scanf("%c", &filename); fopen(filename,"r"); char filetext[1024]; ...