How can we define the String?
-
char ch [5]
-
char string_name [size]
-
char string_name [size]
-
data_type variable_name
C
Correct answer
Explanation
In this 'size' means how many characters can be hold in string. For example to define a string name of 10 character we can write char name[10]; hence, this option is correct.