write a program to print Hello in c++
Answers
Answered by
8
#include <iostream>
int main() {
std::cout << "Hello";
return 0;
}
Similar questions