Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

program to find a smallest number in an array

Answer Posted / anu

#include<iostream.h>
#include<conio.h>
void main()
{
int a[20],n,i,s;
clrscr();
cout<<"Enter valur of n";
cin>>n;
cout<<"Enter the elements";
for(i=0;i<n;i++)
{
cin>>a[i];
}
s=a[0];
for(i=0;i<n;i++)
{
if(s>a[i])
{
s=a[i];
}
}
cout<<"The smallest number is"<<s
getch();
}

Is This Answer Correct ?    10 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is sizeof array in c?

1048


What is output redirection?

1213


Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.

2069


When a c file is executed there are many files that are automatically opened what are they files?

1107


Is a house a mass structure?

1088


while initialization of array why we use a[][2] why not a[2][]...?

2355


By using C language input a date into it and if it is right?

1077


Without Computer networks, Computers will be half the use. Comment.

2296


Write the Program to reverse a string using pointers.

1018


Why void main is used in c?

1049


Are pointers really faster than arrays?

1024


What is typedef?

1413


please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................

2011


What should malloc() do? Return a null pointer or a pointer to 0 bytes?

1069


How important is structure in life?

1082