9 lines
114 B
C
9 lines
114 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
// Префиксная форма
|
|
int a, b=7;
|
|
a = ++b; // a=8 b=8
|
|
}
|