Problem1529--C Programming Practicals 2 problems-5

1529: C Programming Practicals 2 problems-5

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 335  Solved: 217
[Submit] [Status] [Web Board] [Creator:]

Description

In C Programming we have two types of increment operator i.e. pre-increment and post-increment operator. Given x=10, use post-increment to assign 10 and 11 to variables a and b respectively.

Input

无需输入

Output

Value of a : 10 Value of b : 11

Sample Output Copy

Value of a : 10
Value of b : 11

Source/Category

106