#include "stdafx.h" #include #include using namespace std; #define MAX_SIZE 80 int main() { char c; char firstName[MAX_SIZE]; // "Abe" 'A' 'b' 'e' '\0' c = 13; // 0000 1101 c++; c = 'A'; // ASCII A 65 B 66 a 93 ' ' 32 '0' 33 cout << c << endl; cout << (int)c << endl; cout << (int)'\t' << endl; cin >> firstName; cout << "Hello " << firstName << "!" << endl; int len = strlen(firstName); cout << firstName << " : your name has " << len << " characters." << endl; return 0; }