Home » Technical Questions » Programming

void main() { char good *better, *best; printf( "%d..%d", sizeof(better), sizeof(best) ); }

Correct Answer: 4..2

Explanation:

The second pointer is of char type and not a good pointer.


← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion