How do you declare a variable that will hold string values?

4 years ago
C Programming

The char keyword can only hold 1 character value at a time. By creating an array of characters, you can store string values in it. Example: "char MyName[50]; " declares a string variable named MyName that can hold a maximum of 50 characters.

0
Sanisha Maharjan
Jan 20, 2022
More related questions

Questions Bank

View all Questions