what will be the output for the following
main()
{
printf("hi" "hello");
}
Answer Posted / manishsoni
can any one tell me hows the answer is:
hihello
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What do the functions atoi(), itoa() and gcvt() do?
What is the use of #define preprocessor in c?
What is meant by gets in c?
What are the 5 types of inheritance in c ++?
What are external variables in c?
What is a constant?
What are enums in c?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What are actual arguments?
How to declare a variable?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Explain high-order and low-order bytes.
What is the purpose of & in scanf?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.