Header Ad

C++ program to print message on screen

In this post, we are going to write a C++ program to print message on the screen

C++ program to print message on screen


C++ program to print message on the screen.

#include<iostream> // header file

int main(void)  // main function
{

    std::cout<<"Welcome to c++ programming"; //output statement

   return 0;
}

Output

Welcome to c++ programming.

Post a Comment

0 Comments