what will be the output for the following
main()
{
printf("hi" "hello");
}
Answer Posted / prabu
The output will be
hi hello
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
Is there any possibility to create customized header file with c programming language?
Explain what is a stream?
What is methods in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
If the size of int data type is two bytes, what is the range of signed int data type?
Explain the Difference between the New and Malloc keyword.
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Which header file is used for clrscr?
What is c language in simple words?
What are the 5 elements of structure?
What will the preprocessor do for a program?
Write a code of a general series where the next element is the sum of last k terms.
What is the size of empty structure in c?
Is there a way to compare two structure variables?