mardi 9 août 2016

When to use endl?

Code:1

    int main()
{
    int a;
    cout << "Hello world!" <<endl;
}

Code:2

int main()
{
    int a;
    cout << "Hello world!";
}

Does code:2 send h,e,l,l,o..... each separately ?

Aucun commentaire:

Enregistrer un commentaire