what will be the output for the following
main()
{
printf("hi" "hello");
}
Answers were Sorted based on User's Feedback
Answer / manishsoni
can any one tell me hows the answer is:
hihello
Is This Answer Correct ? | 2 Yes | 0 No |
How does free() know how many bytes to free?
what is the use of operator ^ in C ? and how it works?
Where define directive used?
What is a constant and types of constants in c?
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.
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.
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Program to write some contents into a file using file operations with proper error messages.
main() { int a[10]; printf("%d",*a+1-*a+3); }
Can include files be nested? How many levels deep can include files be nested?
What the different types of arrays in c?
What are the difference between a free-standing and a hosted environment?