Code:
variables:

type varName;

Functions:
function/type DoWhatever (arg1, arg2.... )
{
   return CallOtherFunction();
}


Conditionals:

if(someThing >= 0)
{
    DoWhatever(42,42);
}
else
{
    youSuck=True;
}




also I like to keep my variables classes, functions and objects declared in the .h file and the processes in the .c file, but that is just so that I don't get myself confused switching back and forth from vc++