cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Array
Array
Sep 23, 2014 at 1:49am UTC
vatsalbp
(21)
m_sName-- character array shall be 128 bytes
How do i create a character array that has 128 bytes?
Sep 23, 2014 at 9:48am UTC
coder777
(8444)
char
m_sName[128];
// Don't forget the terminating 0 (maybe +1)
Topic archived. No new replies allowed.