Question: 6. Given the following declarations: char name[21] = Bob; char yourName[21] = Joe; char studentName[31] = Joe Bob; Mark each of the following as valid

6. Given the following declarations:

char name[21] = "Bob";

char yourName[21] = "Joe";

char studentName[31] = "Joe Bob";

Mark each of the following as valid or invalid. If invalid, explain why.

a. cin >> name;

b. cout << studentName;

c. yourName[0] = '\0';

d. yourName = studentName;

e. if (yourName == name) studentName = name;

f. int x = strcmp(yourName, studentName);

g. strcpy(studentName, name);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!