Advertisement
sparrow02

9 dodawanie

Dec 8th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include<string.h>
  3. #include<algorithm>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string napis4="Ala ma kota";
  9. napis4.insert(10, "nie ma");//pierwsze wartość to od ktorej druga ile znakow, jedna wartosc
  10. cout<<napis4<<endl;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement