What is the output of the following program? print("First Line", end ="&") print("Second Line")
Answers
Answered by
0
Answer:
The printf() function returns the number of characters printed. So inner printf prints Hello on screen hence 5 characters are printed( H,e,l,l,o) so 5 is returned by inner printf.
Answered by
0
output: First Line&Second Line
Mark me as the brainliest!!
Similar questions