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