Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Homework HelpRSS Feeds

PROGRAM TO DISPLAY MESSAGE USING COUT

Posted By: Raymundo Fischer     Category: C++ Programming     Views: 5229

WRITE A PROGRAM TO DISPLAY MESSAGE USING COUT.

Code for PROGRAM TO DISPLAY MESSAGE USING COUT in C++ Programming

#include<stdio.h>
#include<conio.h>
#include<iostream.h>

void main()
{
char name[10];
clrscr();
cout<<"Enter the name";
cin>>name;
cout<<"WELCOME TO SYNTAX EXAMPLE "<<name;
getch();
}
  
Share: 


Didn't find what you were looking for? Find more on PROGRAM TO DISPLAY MESSAGE USING COUT Or get search suggestion and latest updates.

Raymundo Fischer
Raymundo Fischer author of PROGRAM TO DISPLAY MESSAGE USING COUT is from Frankfurt, Germany.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!