“printf cpp” Kod odpowiedzi

Wydrukuj sznurek z printf w c

//can't print with printf, since string is a C++ class obj and print %s 
//doesn't recognize
//can do
printf("%s", str.c_str()) //converts string to c str (char array)
  
  //or just use cout<<str; 
  
  //string assignment 
  str1=str2; //or
str1.assign(str2) 
Helpful Hamerkop

printf cpp

cout << " cpp";
Kenneth Roque

Odpowiedzi podobne do “printf cpp”

Pytania podobne do “printf cpp”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu