#include #include #include //for class string using namespace std; template inline void print(const T& t) {cout << t << "\n";} inline void print(char c) {cout << "'" << c << "'\n";} inline void print(const string& s) {cout << "\"" << s << "\"\n";} int main() { int i = 10; char c = 'A'; string s = "hello"; print(i); print(c); print(s); return EXIT_SUCCESS; }