CCArray issue

I am properly able to add objects to an CCArray but how would i retrieve the objects which i added in CcArray sequentially as i need to do processing with that object.

you can use a for loop to travel through the objects in the ccarray like

//assuming you have an CCArray of sprites called ccarray

for(int i=0; i< ccarray->count(); i++)
{
CCSprite* s = (CCSprite*)ccarray>objectAtindex[i];
}