#include using namespace std; int main (void) { int total_length(0); total_length = sizeof("a") + sizeof('b'); cout << "total length = " << total_length << endl; }