Question: in C, what is the difference between the two and how can someone make the second one more correct char name[6] = sammy; char name1[6]
in C, what is the difference between the two and how can someone make the second one more correct
char name[6] = "sammy";
char name1[6] = {'s', 'a', 'm', 'm', 'y'};
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
