In C++, there are two standard methods for storing strings.
In this scenario, you specify an array of characters, and 0 signifies the end of the string.
#include <cstring>
char str[500] = "Hello";
// How ever ...READ MORE
Aug 2, 2022
in C++
by
Damon
• 4,960 points
•
1,365 views