adplus-dvertising
frame-decoration

Question

Which program outputs "Hello World.." ?

a.

main()
{
scanf("Hello World..");
}

b.

main()
{
printf("Hello World..");
}

c.

main()
{
print("Hello World..");
}

d.

main()
{
scan("Hello World..");
}

Answer: (b).main()
{
printf("Hello World..");
}

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which program outputs "Hello World.." ?