A program to find the biggest number in an array using a pointer.
So this article is for people who already know basics of C
// program to find biggest number in an array using pointer
#include <stdio.h>
void bigg(int *x);
int main()
{
int i;
int a[10];
printf("enter the number: ");
for (i = 0; i<=...
variable.hashnode.dev1 min read