Question: 5 points char a , b , c ; char * x , y , z ; The following line causes a type mismatch error.

5 points
char a,b,c;
char*x,y,z;
The following line causes a type mismatch error. Why? z= &a;
The line should be z=* a instead of z=&a
a is declared as a char* and not as a char
The line should be ?**z=a instead of z=&a
z is declared as a char, and not as a char*
a is uninitialized
5 points char a , b , c ; char * x , y , z ; The

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 Finance Questions!