Question: What does the following code fragment print? char c[20] = ABC; cout < < sizeof(c[2]) < < endl; 2. What does the following code fragment

What does the following code fragment print? char c[20] = "ABC";

cout << sizeof(c[2]) << endl;

2.

What does the following code fragment print?

char c[20] = "ABC";

c[3] = 'x';

cout << c << endl;

3.

What does the following code fragment print?

char c[20] = "ABC";

c[3] = 'x';

strcat(c, "ZZ");

cout << c << endl;

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!