Welcome Maxout!

Luis G

<i><b>Problemator</b></i>
Staff member
Here's why we can't lower the post rate:

class CForumUser
{
public:
.....CForumUser(int desiredpostrate=NORMAL) {postrate=desiredpostrate; } /* Constructs the object */
/* Other members of the class */
private:
.....int postrate;
.....int postcount;
}

int main(void)
{
....CForumUser Professur(HIGH),Luis_G(HIGH); /* Declares and constructs the objects */
........ /* Rest of the code */
}

As you can see Professur, there's the reeason, we were "declared" that way. :D :D
 

fury

Administrator
Staff member
There is a
Code:
 tag for that kinda thing, you know? :headbang:

Oh, I guess I should probably welcome Maxy as well, since that's the topic of this thread, but this is [b]Off Topic[/b] Central, eh? :D

Welcome! :headbang:
 

Luis G

<i><b>Problemator</b></i>
Staff member
Testing the code tag....

Code:
void testinfcodetag(int)
{
      int icode;
      float fcode;
      for(icode=0,fcode=10;icode!=3;icode++)
     {
           fcode=fcode/3;
     }
}
 

Luis G

<i><b>Problemator</b></i>
Staff member
I don't like how it looks, especially those double space between lines....:rolleyes:

now i'm off topic.....:D :D
 
Top