Computer Science, asked by 59863, 9 months ago

What will be the output of the following part of the program? int x[]={4,8,9,15 }; int y[]={6,91,48,25,28}; x=y; System.out.println(x[2]);​

Answers

Answered by hodeee4
0

#include<stdio. h> int c[10] = {1,2,3,4,5,6,7,8,9,10}; main() { int a, b=0; for(a=0;a<10;++a) if(c[a]%2 == 1) b+=c[a]; printf("%d", b); }

  • hope this helps you
  • mark as brainliest answer.

Similar questions