ARRAY USING FOR LOOP
#include <iostream>
using namespace std;
{
int marks[]= {1,3,4,5};
int mathmarks[4];
// mathmarks[0]=478957345;
// mathmarks[1]= 789;
// mathmarks[2]=785;
// mathmarks[3]=787;
for(int i = 0; i<4; i++){
cout<<marks[i]<<endl;
}
// for(int i = 0; i<4; i++){
// cout<<mathmarks[i]<<endl;
// }
return 0;
}
Comments
Post a Comment