// Trailing Whitespace // trailing.cpp #include using namespace std; int main() { int i; char c; double x; char s[8]; cout << "Enter an integer,\n" "a floating-point number,\n" "a character and\n" "a string : " << '\n' << "Please enter below (separated by space): " << '\n' << '\n' << "-> " ; cin >> i >> x >> c >> s; cout << "You Entered: " << "\"" << i << "\"" << ',' << "\"" << x << "\"" << ',' << "\"" << c << "\"" << ", and " << "\"" << s << "\"" << endl; return 0; }