A program that read & display a “Word” in Cpp.

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

void main()
{
    char st[100];
    clrscr();
    cout<<"Enter any word : ";
    cin>>st;
   
    cout<<"The word that you given is : "<<st;
    getch();
}


////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........