Programming Languages C Objective
Mar 08, 2013

What will be output of the following c code?
void main()
{
char *str="Hello world";
printf("%d",printf("%s",str));
}

Choose the correct answer:
A) Hello world10
B) Hello world11
C) world10 Hello
D) Compiler error
Detailed Explanation

No Explanation

Discussion (0)

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

Share Your Thoughts
Feedback