Answers for "string once declared"

C
0

string once declared

//Arrays and strings are second-class citizens in C; 
//they do not support the assignment operator once it is declared.
char c[100];
c = "C programming";  // Error! array type is not assignable.
Posted by: Guest on March-04-2022

Code answers related to "C"

Browse Popular Code Answers by Language