1.

Write aprogram greatest number with pointer​

Answer»

Answer:

Biggest value in the array USING pointers in C

#INCLUDE

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++ )

Explanation:

PLEASE MAKE IT BRAINLY PLEASE..........



Discussion

No Comment Found