What would be the output of the following program? main() { char a[] = "Visual C++"; char *b = "Visual C++"; printf (" %d %d", sizeof (a), sizeof (b)); printf (" %d %d", sizeof (*a), sizeof (*b)); }

Correct Answer: 11 2 1 1

More Questions from Programming

Discussion & Comments

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