what will be the output for the following
main()
{
printf("hi" "hello");
}
Answer Posted / chaitu
the output of this is "hihello"
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Why does everyone say not to use scanf? What should I use instead?
How do you sort filenames in a directory?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
List a few unconditional control statement in c.
What is a pointer value and address in c?
What is typedef?
Write a program which returns the first non repetitive character in the string?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
How are structure passing and returning implemented?
What tq means in chat?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Why use int main instead of void main?
How to draw the flowchart for structure programs?
What are valid signatures for the Main function?
When is a null pointer used?