Consider the following program:main (){int i,j,r;i=100; j=5; r=20;printf("value of i+j-r is % o\n", i+j-r);}What is the output?
main () { int i, j, r; i=100; j=5; r=20; printf("value of i+j-r is % o\n", i+j-r); }
Output:-
100+5-20=85.