Print a welcome message to the screen as follows:
We bid welcome to the ladies of Beauxbaton and our friends from the north, the sons of Durmstrang.
#include <iostream>
int main() {
char *greeting = "We bid welcome to the ladies of Beauxbaton and our friends from the north, the sons of Durmstrang.";
std::cout << greeting << std::endl;
return 0;
}
Comments
Leave a comment