void main()
{
char good *better, *best;
printf( "%d..%d", sizeof(better), sizeof(best) );
}
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option C
Explanation :
The second pointer is of char type and not a good pointer.
Be The First To Comment