Details | Last modification | View Log
/* metrowerks sample code */
int main(void)
{
int a=0, b = 3, c = 0;
a++;
c = a +b;
return 0;
}