Problem:
How to run a program and print in c++. I hope you guys are not laughing at my question. Yeah, I am a newly born programmer 
#include <string>
string someString("This is a string.");
printf("%s\n", someString);
I tried this but it’s not working.