i would like to learn how to run a timer and this is my fun test code for now later i will use it for a real code check line 10 for what i would like to do.
1 2 3 4 5 6 7 8 9 10 11 12
#include <iostream>
usingnamespace std;
int main()
{
char n;
cout << "Please enter a begining port to start hacking sequence" << endl;
cin >> n;
while (true)
{
cout << n++; //run for x amout of time then make a new statment
}
}