Powered By Blogger

Monday, May 4, 2009

C Programming

#include
#include
void main()
{
int a[10],i,min,m;
clrscr();
printf("Enter the number");
scanf("%d",&m);
for(i=0;i
{
printf("\n Element [%d]",i+1);
scanf("%d",&a[i]);
}
min=a[0];
for(i=1;i
if(a[i]
min=a[i];
printf(" min =%d",min);
getch();

}

0 comments:

About This Blog

This is an important blog about updated news about computer science and technology.

Blog Archive

Visitors

  © Free Blogger Templates Blogger Theme II by Ourblogtemplates.com 2008

Back to TOP