next up previous
Next: if() rule Up: C++ Previous: Include files and include

use spaces in type definitions

Use only one space in type definition:

int intValue;

char charValue;

int intVal1,intVal2;

Use one space before ``*'' in pointer definition:

char *strType;

int *aaa;

void

methodName(int a,char *aaa,int *bbb) {}



2005-07-21