Function definition
void InitArray(int A[], int ArrayCount)
{
for (int i = 0; i < ArrayCount; i++)
{
A[i] = 0;
}
}
Previous slide
Next slide
Back to first slide
View graphic version