Changes

Langage C

4 bytes removed, 23:10, 18 March 2015
/* code part */
int j = 10; // declaration of integer variable where a constant associate to him
int x, y, z; // declaration of integer variable
 
// example of instruction with an expression (side right)
x = j + 5;
y = j + x + 10;
z = j / 2
i = (x - y) / z;
==== Trick ====
952
edits