Answers for "c loop through array void *"

C
1

looping through an array in C

#include <stdio.h>
main() {
   int LA[] = {1,3,5,7,8};
   int item = 10, k = 3, n = 5;
   int i = 0, j = n;   
   printf("The original array elements are :\n");
   for(i = 0; i<n; i++) {
      printf("LA[%d] = %d \n", i, LA[i]);
   }
}
Posted by: Guest on April-21-2022

Code answers related to "C"

Browse Popular Code Answers by Language