What will be the output of the following program?
a=10
b=20
c=30
Print (a,"/n",b,"/n,c)
Answers
Answered by
0
Answer:
10,/n,20,/n30
Explanation:
this is because to break to a new line you use \n and not /n as the compiler sees it as just another character
Similar questions