Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <stdio.

h>

int main()
{
int index;

/* index = 13; */
printf("The value of the index is %d\n", index);
index = 27;
printf("The value of the index is %d\n", index);
index = 10;
printf("The value of the index is %d\n", index);

return 0;
}

You might also like