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
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
How do you sort filenames in a directory?
Why is event driven programming or procedural programming, better within specific scenario?
write an algorithm to display a square matrix.
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Write a program on swapping (100, 50)
Explain 'bus error'?
If null and 0 are equivalent as null pointer constants, which should I use?
Explain what is the general form of a c program?
Differentiate between declaring a variable and defining a variable?
What are types of structure?
Can we use any name in place of argv and argc as command line arguments?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is the purpose of & in scanf?
What are actual arguments?