Computer Science, asked by sherazchanna, 6 months ago

c++ language about example​

Answers

Answered by yoyboys
0
I know but I forgot the answer
Answered by salonitiwary
0

Answer:

C++ "Hello World!" Program

// Your First C++ Program

#include <iostream>

int main() {

std::cout << "Hello World!";

return 0;

}

Output

Hello World!

Similar questions