I wrote a code in C and it executed perfectly but at the end I got a line saying \"Program ended with exit code: 0\". What does this line signify and how do I get rid of thi
What it is?
an exit code of 0 indicates no error. If a program wants to indicate there was something wrong when it exited it will exit with a non-zero value.
How to get rid of it?
Do not use the IDE for program execution. – as BLUEPIXY said.