12 lines
198 B
C++
12 lines
198 B
C++
#include<bits/stdc++.h>
|
|
using namespace std;
|
|
|
|
int main(){
|
|
string s = "hello world";
|
|
char *str = "hello world";
|
|
char *str_1 = &str[2];
|
|
str++;
|
|
cout << str << endl;
|
|
|
|
return 0;
|
|
} |