Nothing. It looks normal. Are you actually getting any errors?
Anyway, be sure to put that in code tags; see the articles for more on that.
And you can streamline the code
1 2
int i;
i = 5;
to the code int i = 5;
EDIT: Waiitt.. Did you have a usingnamespace std;
in there somewhere?
cout is part of the std namespace, you either need to type std::cout <<
or put in the using directive.
Never put a using directive or declaration before any include statement. That is just asking for trouble. You are screwing with the global namespace for the <cstdlib> library.