Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
CPP
67
strings arrays
Guest on 20th April 2022 02:04:53 AM
// For C++ libraries.
#include <iostream>
// Library for strings.
#include<string>
using
namespace
std
;
int
main
(
)
{
string word
=
"Book"
;
cout
<<
word
<<
endl
;
word
[
1
]
=
'i'
;
word
[
2
]
=
'k'
;
word
[
3
]
=
'e'
;
cout
<<
word
<<
endl
;
return
0
;
}
Raw Paste
// For C++ libraries. #include <iostream> // Library for strings. #include<string> using namespace std; int main() { string word="Book"; cout << word << endl; word[1]='i'; word[2]='k'; word[3]='e'; cout << word << endl; return 0; }
Login
or
Register
to edit or fork this paste. It's free.