{
char module;
cout << "Enter Module Name";
cin >> module;
mkdir(module); <- I get the error in this line. the error line is marked under module. The error it throws is "Error: Argument of type "char" is incompatible with parameter of type "const char*" . Please help me to fix this issue.
}