Computer Science, asked by subha143dwt, 25 days ago

. What is the output of the following program fragment is……………………..

int i;

i=1;

i=2;

i=3;

printf(“%d %d %d”,i,i,i);

a) 1,2,3

b) 1,1,1

c) 2,2,2

d) 3,3,3​

Answers

Answered by ameliac0707
0

Answer:

B

Explanation:

How will it process? The variables need to be different or else it will show an error but I think, the output would be (b)

Similar questions