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
Write a program to find the biggest number of three numbers in c?
What is string in c language?
What is string function in c?
What are high level languages like C and FORTRAN also known as?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Explain how do you determine whether to use a stream function or a low-level function?
Why is c called a structured programming language?
What is the purpose of clrscr () printf () and getch ()?
What is the difference between call by value and call by reference in c?
What are the different types of constants?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is default value of global variable in c?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
How do we declare variables in c?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)