Computer Science, asked by juwairiyahsurti, 10 months ago

.What does the following program output to the monitor:
int value = 0;
int count = 1;

value = count++ ;

System.out.println("value: "+ value " + count: " + count );

Answers

Answered by omtiwari900
2

Answer:

output will be:

value:1 count:2

Similar questions