Q:

Write a program to print Hello, World on the standard output

0

Write a program to print Hello, World on the standard
output.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <iostream>
int main() {
  std::cout << "Hello, World" << std::endl;
  return 0;
}
C++

 

Output:

Hello, World

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)