0 votes
in Python by

Read the below program code carefully, 

int1 = 10  

int2 = 6  

if int != int2:  

    int2 = ++int1  

    print(int1 - int2)    

What will be the output of this program?

a) 2

b) 4

c) 0

d) No Output

1 Answer

0 votes
by

c) 0

Related questions

0 votes
asked Sep 25, 2021 in Python by john ganales
0 votes
asked Sep 25, 2021 in Python by john ganales
...