0
my question is that how can i space in these three contents that i printed in screen
#include<iostream> using namespace std; int main() { cout<<" HUSSAIN !"; cout<<" talha !"; cout<<" hassan !"; }
1 Antwort
+ 1
you mean a new line? than its
#include<iostream>
using namespace std;
int main()
{
cout << " HUSSAIN !" <<endl;
cout << " talha !" <<endl;
cout << " hassan !" <<endl;
}