declaring functions

Im really confused with these....

whats does i mean and what does ! mean in c++
If you need help with functions, this website has a good tutorial that explains everything at http://www.cplusplus.com/doc/tutorial/functions/.

and ! means not in c++ like

1
2
3
4
5

if (n != 5) {
cout << "N is not 5;";
}


could you also elaborate on what i you are talking about?
Topic archived. No new replies allowed.