Блог пользователя code_warrior

Автор code_warrior, история, 4 года назад, По-английски

Can anyone explain what we should prefer "\n" or '\n' for adding a newline character or both are actually the same thing?

  • Проголосовать: нравится
  • -37
  • Проголосовать: не нравится

»
4 года назад, # |
  Проголосовать: нравится +11 Проголосовать: не нравится

Search google first result smh.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I had googled but can't understand the idea. Please if someone knows ,share his idea. Feel free to downvote as most people do to newbie .

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +4 Проголосовать: не нравится

    According to what i gathered from the stack overflow thread you can do the following two

    1.> while adding a new line after any numerical datatype use '\n'. example : cout << "age = " << age << '\n'; // more efficient than cout << "age = " << age << "\n";

    2.> If adding a newline after printing a string you can do cout<<"checkoutput \n";