#include <stdio.h> #include <iostream> int main() { char* str = "Hello"; std::cout << (sizeof(str) + sizeof(',') + sizeof(" world!")); return 0; }