hello,Im trying to define the variable in C programming.Does anyone how to do it and the difference of data type while defining it?
@ryanhallihan I've got news for you buddy, there is no 'string' datatype in C, what you should do is use a character array, like so
char[] name = "ryan";
hello,
Im trying to define the variable in C programming.
Does anyone how to do it and the difference of data type while defining it?
@ryanhallihan I've got news for you buddy, there is no 'string' datatype in C, what you should do is use a character array, like so