1 2 3 4 5 6 7 8 9 10 11
#include <cstdio> int main(int argc, char* argv[]) { if (argc != 2) { std::printf("The size of the hash table is needed"); return 1; } return 0; }