+ 1
Isn't string a non primitive data type in c?
2 Respuestas
+ 2
string doesn't exist in C. You mean C++ then yes, like fernando said.
string in c is an array of char with null byte at the end ,but there is no string datatype.
+ 1
Yes. Char is a primitive data type; string isnt.