Welcome Program in C++



 Welcome Program in C++

Code Written in Dev C++;

#include<iostream.h>

#include<conio.h>

int main()

{

cout << " \n Welcome to TECH TRACT ASSIST";

return 0;

}


Code Written in Turbo C++ :-

#include<iostream.h>

#include<conio.h>

void main()

{

        clrscr();

        cout << " \n Welcome to TECH TRACT ASSIST";

        getch();

}


About above uses statement and functions:-

cout :- This is used to give output messages or values.

Post a Comment

0 Comments