Computer Science, asked by kajol78, 7 months ago

Rewirte the following program after removing syntactically error

Answers

Answered by SpanditaDas
1

Answer:

#include void main( ) { int A[10] = {3,2,5,4,7,9,10}; int S = 0,p; for(p = 0; p<=6; p++) { if(A[p]%2==0) S = S+A[p]; } cout<

Similar questions