If you want not to see the output when your run the program, you can redirect its output like this:
./program > /dev/null
/dev/null is a special device that eats up everything you feed it (like a black hole). > redirects the output (of stdout) to a file. Redirecting the output to /dev/null means everything is written to /dev/null and that doesn't do anything with it, therefore you effectively throw out your output.
If you want to do it in the program itself, you can call freopen and you can reopen stdout to /dev/null, getting the same effect. Like this:
freopen("/dev/null", "w", stdout);
Sidenote: To redirect stderr, instead of > you can use 2> and with freopen, of course you reopen stderr. It's not such a good idea to redirect stderr to /dev/null though, although it maybe helpful to redirect it to a file.
If you want to redirect both stdout and stderr, you can redirect stderr to stdout and stdout to /dev/null like this:
./program > /dev/null 2>&1
(note the order of redirection)