#include using namespace std; int main() { string phrase{"Hello Planet"}; printf("Hello world ! \% \n"); printf("A constant %d \n", 1000); printf("\"%s\" is %d long \n", phrase.c_str(), phrase.length()); return 0; }