This is a C program, its all about arrays.
The question to my homework is:
1. Trace the following C program. For each iteration of the outer loop, illustrate the array.
[code=c]
#include <stdio.h>
int main()
{
int num[10] = {97, 25, 15, 77, 38, 10, 5, 27, 50, 1};
int x, y, z, temp;
/* start of outer loop */
for (x = 0; x < 9; x++)
{...