Replace C headers with C++ one's
Code:
C headers C++ headers
-------------------------------------------
#include <assert.h> #include <cassert>
#include <stdlib.h> #include <cstdlib>
#include <time.h> #include <ctime>
why in this world are u using two main() in the code