Getting Started With C++ [Solved]
Alright so im just starting C++ and im reading C++ without fear the second edition and i just really needed some basic help with understanding what do i have to do to print all the numbers from n1 to n2 where n1 and n2 are two numbers specified by the user. Im using the program dev-c++ as my compiler. Thanks

Well, you will first need to define n1 and n2 as an int variable sinice they will be integers:
int n1, n2;
Then you will use the cin function to get user input:
std::cin>>n1;
std::cin>>n2;
Then you will want to print it, so you use the cout function:
std:: cout<<"First number is: "<<n1<<"\nSecond number is: "<<n2;
Keep us posted on your progress.
I was interested in making a Kill/Death Ratio Hack for Modern Warfare 3 can anyone help me get started? I just started to read some C++ books and i really need some professional help.
Thank you