Skip to content
Snippets Groups Projects
Commit 6b6df50c authored by 장 재용's avatar 장 재용
Browse files

Update anagram_checker.c

parent 019e7e78
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,10 @@
#define MAX 151
int main(int argc, char* argv[]){
if (argc != 2){
return 0;
}
char *file_name = argv[1];
FILE* pFile = fopen(file_name, "r");
if (pFile == NULL){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment