Computer Science, asked by jeevan8701, 11 months ago

write a c program to find the smallest element in the array of integers

Answers

Answered by hornystudiers
6
hey mate your answer is
#include <stdio.h>

int main()

{

int array[100], minimum, size, c, location = 1;

printf("Enter number of elements in array\n");

scanf("%d", &size);

printf("Enter %d integers\n", size);

for (c = 0; c < size; c++)

please mark as BRAINliest answer


hornystudiers: please mark as BRAINliest answer
Similar questions