view python/tests/testcode.c @ 136:9af544be5d2a

Added hexfile edit
author Windel Bouwman
date Wed, 23 Jan 2013 21:54:14 +0100
parents f2d980eef509
children
line wrap: on
line source


int Calculate(int a, int b, int c)
{
   int d, e;
   d = a + b;
   e = d * c - a;
   return a + b + c + d + e;
}