Computer Science, asked by laibaimran753, 5 months ago

declare character string of size 10​

Answers

Answered by ravibala47
0

Answer:

The classic Declaration of strings can be done as follow: char string_name[string_length] = "string"; The size of an array must be defined while declaring a C String variable because it is used to calculate how many characters are going to be stored inside the string variable in C.

Similar questions