Welcome to our Community
Wanting to join the rest of our members? Feel free to sign up today.
Sign up

Search results

  1. bava

    Solved C++ Program to find the sum of digits of an integer number

    As the above problem is solved, but i still mark some point why it doesn't work. It is because you have used /n which means new line but it isn't a keyword. /n is used in comments when for new line. Instead you can use endl which is a keyword and it means end of line. Or you can use "/n" which...