Guest_imported
New member
- Jan 1, 1970
- 0
hello, I am dying to know how to do this.Can some help me translate this c++ loop into assemly, please.
----- C++ ----------------
int abc[9];
for(int count=0;count<8;count++)
{
abc[count]=911; initialize each element to 911
}
for(count=0;count<8;count++)
{
cout<<abc[count]<<endl; \\now to access array and print
}
Can someone be kind enough and translate this
tiny code snipplet? thabbks
----- C++ ----------------
int abc[9];
for(int count=0;count<8;count++)
{
abc[count]=911; initialize each element to 911
}
for(count=0;count<8;count++)
{
cout<<abc[count]<<endl; \\now to access array and print
}
Can someone be kind enough and translate this
tiny code snipplet? thabbks