int main(int argc, char* argv[]) {
char file1 = argv[1];
char file2 = argv[2];
}
I am getting an error message here - initialization makes integer from pointer without a cast. file1 and file2 are the names of files. How can I approach to this?