I would like to know how I can convert this c++ to pseudo code:
Code:
#include <iostream>
#include "database.h"
using namespace std;
int main()
{
Database db(100);
db.run();
return 0;
}
Comment