+ 1
How to print "Hi"
hi, i am new
5 Réponses
+ 22
Complete the course..... all this basic things are covered there check out 👇
https://www.sololearn.com/learn/CPlusPlus/1603/
+ 8
I recommend that you review the course.
https://www.sololearn.com/learn/CPlusPlus/1604/
+ 5
include<iostream.h>
include<conio.h>
void main()
{
clrscr();
cout<<"Hi";
getch();
}
try this on your laptop or computer and see the result
+ 2
in order to print "Hi", you want to use
{
cout << "Hi";
return 0 ;
}
I'm new to this, so i could be wrong XD
+ 1
Nichvano Nope, that's correct