Złamanie linii tekstu wyprowadzanego na terminal to:
a) std:endl;
b) 'Zn';
a celu
c) '\n';
d) Zr';


Odpowiedź :

is that c++?

both a and c are correct, but you can't use endl in between double quotations "" with cout

also endl flushes the buffer every single time when called, it's preferred to do "cout << "\n"; - the **more** correct answer is c

if it's c then the answer can be c only - clang doesn't support endl