I do not want my end programs to end as "Press any key to continue"
Is there another way for them to end like "Press 0 to exit"
or "Press c to continue" ?
Let me be more clear on this, I am using c-free as my IDE, normally when using it, after running my code with the DOS console, it tells me to "press any key to continue" but people say that that form of ending a program is some what rude,
Is there another way to make the compiler bring what i want and not that statement "Press any key to continue" ?
If you don't use something like Browni3141 provided you, your code will run and exit so fast the user won't be able to see the results. Your IDE added that pause in there for YOUR convenience during debugging only. You will have to add the equivalent code in your actual application that others will use. In any case, how is forcing them to press a particular key better than pressing any key???