Programming Languages C Objective
Jan 04, 2013

Output will be ?
#include
main()
{
char str[]="S\065AB";
printf("\n%d", sizeof(str));
}

Choose the correct answer:
A) 6
B) error
C) return 1;
D) 12
Detailed Explanation

The Output of this code is 6. So the answer is a.

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback