Radical Developers welcomes all the visitors to be a member of the team. Come join us. Its all about open-source concept. All Programs are written and tested in MacOS X, Unix, Linux and may not match with the outputs of Turbo C++ in Windows
Showing posts with label Pointers (C). Show all posts
Showing posts with label Pointers (C). Show all posts

Sunday, January 9, 2011

Write a program to find out the smallest number in the array using pointers.


Source Code :

#include<stdio.h>
void main()
{
      int a[10],*p,i,min;
      clrscr();
      p=&a[0];