#include #include #include #include using namespace std; int main(int argc, char** argv){ char *path = "."; char path[] = {path, NULL}; if (argc > 1) { path = argv[1]; } printf("Угадай %c", path); //FTS *fts = fts_open(argv, FTS_PHYSICAL, nullptr); return 0; }