Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
char largearray[100000];
char *myString;
myString = "This is a very long sentence that is using a character pointer.";
#include <string>
...
using namespace std;
...
string myString;
myString = "This is another long string. Blagh, blagh, blagh!";
I sure hope you're not talking about doing something like this!Another approach, you can use a character pointer.
char* str;
cin >> str;