Logo

dev-resources.site

for different kinds of informations.

C++ maxsus belgilari

Published at
3/29/2022
Categories
beginners
cpp
uzbek
dasturlash
Author
sardorpm
Categories
4 categories in total
beginners
open
cpp
open
uzbek
open
dasturlash
open
Author
8 person written this
sardorpm
open
C++ maxsus belgilari

\n

Backslash n

Ushbu belgi string ichiga yoziladi. Bu belgi bor joydan yangi qatorga yoziladi. Masalan ⬇️

 cout << "Salom\n dunyo." << endl;

Salom
  dunyo.
Enter fullscreen mode Exit fullscreen mode

\t

Backslash tab

Bu ham string ichida yoziladi va bu bo'lgan joy tab tugmasi bosilgada chiqadigan masofada joy bo'sh qoldirib ketiladi. ⬇️

cout << "olma\tbehi\tanor"

olma   behi   anor
Enter fullscreen mode Exit fullscreen mode

\b

Backslash b

cout << "olma\b bexi" << endl;

olm bexi
Enter fullscreen mode Exit fullscreen mode

Bu \b oldingi 1 dona belgini o'chirib yuboradi

Featured ones: