Quote (clanwkya @ 31 Oct 2012 16:58)
i do not understand the class section
how do you write the class section?
whats the class section used for?
"class section?" Not sure what that means.
Here's a guess on what you mean though:
Code
class foo {
};
Now I have created a declaration of a variable, of type: foo.
Code
foo you;
Now I have created a variable named "you" of type "foo."
If you're interested in learning about OOP: Google it, or read a book.