First page Back Continue Last page Overview Graphics

Eksempler: præcision (1)

void foo(int x, int y) {

int z1 = x/y; //no warning

double z2 = x/y; //Warning 653: Possible loss of fraction

}