Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3
Line number 8, scanning %d%d%d from the input is the problem. You cannot scan %d%d%d and expect that the three numbers will be scanned fine, because how is the computer supposed to know where a number ends if there is nothing separating the 3 numbers? Just try printing the values of the 3 variables to the screen printf("%d %d %d", ram, shyam, ajay); if I give the input '202122', it will print 202122 <some-number> <some-other-number> This is because the input value is assigned to ram and the other variables retain their original undefined value. The fix is simple. Add a separator between the three %d like a comma or space and enter the input in that format.
22nd Jan 2021, 4:38 AM
XXX
XXX - avatar