Computer Science, asked by Cynthia35, 5 hours ago

pls answer this with explaination​

Attachments:

Answers

Answered by Sanskar260
0

Output:

35

Explanation:

int i=4;

int k = ++i * 7;

k = 5 * 7 = 35

the increment operator(++) increases the value by 1

Similar questions