C++ Online Compiler & Playground
HTML/CSS/JavaScript
HTML
CSS
Javascript
C++
C
PHP
Java
Python
Swift
C#
Ruby
Node.JS
Kotlin
jQuery
Go
R
TypeScript
Start C++ Course
Register
null char in string
+2
Author: px16
Dark
Public
Save
CPP
cpp
1
2
3
4
5
6
7
8
9
#include
<
iostream
>
using
namespace
std
;
int
main
()
{
string s
=
string
(
"\0something"
,
5
);
cout
<<
s
.
length
()
<<
":"
<<
&
s
[
1
];
return
0
;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT