Variables

Example:

TRect rectangle( 0,0,0,0 );
CTetrisClass* pointer = NULL;

Wrong:

static int a, b, c;
// Static local variables are not allowed, TInt type must be 
// used, variables should be initialized (to zero, for example) 
// and multiple items should not be declared on the same line.