Computer Science, asked by gsp00701, 11 months ago

Evaluate the following C++ expressions. (i) int I = 10, j = 20, k; k= (I + j) /3;

Answers

Answered by Anonymous43102
3
int main()
{
int l =10,j=20,k;
k=(l+j)/3;
}

Final answer= 10
Similar questions