Hello World
The first blog.
Welcome to the programming world!
1
2
3
4
5
#include <iostream>
int main() {
std::cout << "Hello, C++ from Allen!" << std::endl;
return 0;
}
This post is licensed under CC BY 4.0 by the author.
The first blog.
1
2
3
4
5
#include <iostream>
int main() {
std::cout << "Hello, C++ from Allen!" << std::endl;
return 0;
}