 |
C Strings in C and C++ - Cprogramming.com
Strings are arrays of chars. String literals are words surrounded by double quotation marks. "This is a static string" To declare a string of 49 letters, you would want to say: char string[50]; This would declare a string with a length of 50 characters. D
www.cprogramming.com |
 |