mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
12 lines
190 B
C
12 lines
190 B
C
/* pre-increment operator always executed before the evaluation
|
|
of expression, even if it contains conditional operator */
|
|
|
|
main()
|
|
{
|
|
int a, b;
|
|
|
|
a=1;
|
|
b=1;
|
|
printf("%d\n", a!=1?++b:b);
|
|
}
|