#include int main() { char c; do { cin.get(c); } while (c == ' ' || c == '\n'); cout << "The ascii code for c is " << int(c) << endl; }