#include #include #include char* whereIsTheFile; void SQLquer(const char* query){ char* help; char* help1; char* help2; help= malloc((strlen(query)+1)*sizeof(char)); // I am dynamicly allocating the memory help= strcpy(help,query); // I copy query to the help, and put pointer at the beging to the help too help=(strstr(query,"FROM")) +6; // I look for FROM move, behind the first apostrof help1=help; //Now I put ...