Computer Science, asked by kritttika, 4 months ago

int a[] = {7,4,3,9,6};
int p= a[1] + a[3]*a[2];
find the value of P.​

Answers

Answered by GeekofGeek
1

Explanation:

I think it's 31.

a[1]=4

a[3]=9

a[2]=3

4+9*3=31

Similar questions