[ebd1a4]: / test / expr-unary.c  Maximize  Restore  History

Download this file

13 lines (12 with data), 105 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
void test()
{
  int a;
  int *b;
  a = -1;
  a = +2;
  a = ~4;
  a = *b;
  a = -a;
  a = +a;
  a = ~a;
}