Follow Our FB Page << CircleMedia.in >> for Daily Laughter. We Post Funny, Viral, Comedy Videos, Memes, Vines...


what will be the output for the following
main()
{
printf("hi" "hello");
}

Answers were Sorted based on User's Feedback



what will be the output for the following main() { printf("hi" "hello"); }..

Answer / sumesh

the output of this question will be hihello (without any blank space).

Is This Answer Correct ?    28 Yes 2 No

what will be the output for the following main() { printf("hi" "hello"); }..

Answer / manishsoni

can any one tell me hows the answer is:
hihello

Is This Answer Correct ?    2 Yes 0 No

what will be the output for the following main() { printf("hi" "hello"); }..

Answer / manoj

it raises an error

Is This Answer Correct ?    4 Yes 3 No

what will be the output for the following main() { printf("hi" "hello"); }..

Answer / chaitu

the output of this is "hihello"

Is This Answer Correct ?    3 Yes 3 No

what will be the output for the following main() { printf("hi" "hello"); }..

Answer / prabu

The output will be
hi hello

Is This Answer Correct ?    1 Yes 8 No

Post New Answer

More C Interview Questions

How does free() know how many bytes to free?

8 Answers  


what is the use of operator ^ in C ? and how it works?

2 Answers  


Where define directive used?

0 Answers  


What is a constant and types of constants in c?

0 Answers  


The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

0 Answers   Microsoft,






how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.

0 Answers  


write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays

0 Answers   IBM,


Program to write some contents into a file using file operations with proper error messages.

2 Answers  


main() { int a[10]; printf("%d",*a+1-*a+3); }

2 Answers  


Can include files be nested? How many levels deep can include files be nested?

0 Answers   Aspire, Infogain,


What the different types of arrays in c?

0 Answers  


What are the difference between a free-standing and a hosted environment?

0 Answers   Infogain,


Categories