This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/Lectures/LC11/loop_into_array.c

27 lines
572 B
C
Raw Permalink Normal View History

2022-04-07 15:58:01 +00:00
/* A very simple program that defines an array of ten integers */
/* And puts a different value into each */
#include <stdio.h> /* Usual includes */
#include <stdlib.h>
int main( void )
{
int Values[10]; /* Define an array of 10 integers */
int j; /* Define an integer 'j' */
/* Use a loop to put some values into the array, displaying the */
/* vaules stored on the screen */
for ( j = 0 ; j < 10 ; j++ )
{
Values[j] = j * 2;
printf("\nThe value in array index %d is %d ",j,Values[j]);
}
return 0; /* End of the program */
}