cout << "النص الذي تريد طباعته";
cout << '\n'; او cout << endl;
cout << '\t';
cout << '\"';
//هذه جملة شرح لا يتم تنفيذها
#include "iostream"
using namespace std;
int main(){
/*
\" -> "
\' -> '
\\ -> \
\n -> endl
\t -> " "
*/
// Hello "Ali"
cout << "Hello \"Ali\"" << endl;
// Hello 'Ali'
cout << "Hello \'Ali\'" << endl;
// Hello \Ali\
cout << "Hello \\Ali\\" << endl;
cout << "Hello \nAhmad" << endl;
cout << "Name\tNumber" << endl;
cout << "Ali \t18" << endl;
return 0;
}