can u make a counter for 0-9999 with c ?
#include <iostream.h> #include <conio.h> main() { int counter; for(counter =0; counter <= 999; counter = counter + 1) {cout << counter <<"\n";}
getch(); }
After 18 months, do you really think the OP is still sitting there waiting for this?
Only 3 requirements were stated - and you have missed 2 of them:
1. The count value;
2. That language.
You also failed to notice the clear instructions for posting source code:
www.danlhenry.com/.../keil_code.png
And what happens after getch() returns...?