operators
Posted: Sat Oct 20, 2012 12:33 pm
How operators works? where is the definition (I cann't find it)
// this works
x = tilex*100;
x += 50;
// this crashes
x = ((tilex*100) + 50);
// this also crashes
x = (tilex*100) + 50;
// this works
x = tilex*100;
x += 50;
// this crashes
x = ((tilex*100) + 50);
// this also crashes
x = (tilex*100) + 50;