Problem1530--C Programming Practicals 2 problems

1530: C Programming Practicals 2 problems

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

Description

In C Programming we have two types of decrement operator i.e. pre-decrement and post-decrement operator. Given y=10, use post-decrement to assign 10 and 9 to variables c and d respectively.

Input

无需输入

Output

Value of c : 10 Value of d : 9

Sample Input Copy

2

Sample Output Copy

Value of c : 10
Value of d : 9

Source/Category

107