Output of the following code is...?
#includestdio.h
void main()
{
int n[5]={45,78,92,67,9},i,s=0;
for(i=0;i5;i++){
if(n[i]%2==0){
s+=n[i];
printf("%d\t",s);}
}
}

Posted on by