Whats wrong with this code?
#include <stdlib.h>
#include <conio.h>
#include <iostream>
using namespace std;
*/
int main()
do
{
cout << "Still in the do...while loop" << endl;
} while (!kbhit());
return EXIT SUCCESS
}
The error message is:
Line 5: parse error before '/'
Any Suggestions?




Reply With Quote