1 char c; 2 short w; 3 long l; 4 f()5 f() { 6 if ((unsigned)c <= 0177) 7 c = 0; 8 if ((unsigned)w <= 0xefff) 9 w = 0; 10 if ((unsigned)l <= 0xefffffff) 11 l = 0; 12 } 13