Computer Science, asked by jainsaksham1635, 10 months ago

write a program to accept 10 numbers in an array and find the greatest​

Answers

Answered by vishuchunchu
0

Answer:

pls follow me I follow u

Answered by ageetha910
0

Answer:

Explanation:

#include <stdio.h>

int main()

{

   int i,arr[10];

   printf("Enter 10 elements:");

   for(i=0;i<10;++i)

       scanf("%d",&arr[i]);

   for(i=0;i<10;++i)

   printf(" greatest number is:%d",greatest number);

   return 0;

}

Similar questions