How to input in the C language multiline strings, each and every line of string of characters stored in different array,
CodePudding user response:
2 d character array,,,,
CodePudding user response:
Typedef char String [20]
Char a [20]
Char [20] b
String c [2]={a, b}
C [0], c [1]
CodePudding user response: