Find largest element in array using pointers im c
Answers
Answered by
1
Answer:
Biggest value in the array using pointers in C
#include <stdio.h>
int main()
{
long array[100], *maximum, size, c, location = 1;
printf("Enter the number of elements in array\n");
scanf("%ld", &size);
printf("Enter %ld integers\n", size);
for ( c = 0 ; c < size ; c++ )
Similar questions