program to find a smallest number in an array

Answers were Sorted based on User's Feedback



program to find a smallest number in an array..

Answer / suse

main()
{
int a[20],n,i,s;
scanf("%d,%d",&n,&a[i]);
s=a[0];
for(i=0;i<n;i++)
{
if(s>a[i])
{
s=a[i];
}
}
printf("the smallest number is %d",s);
}

Is This Answer Correct ?    5 Yes 7 No

program to find a smallest number in an array..

Answer / fg

vcxcx

Is This Answer Correct ?    0 Yes 2 No

program to find a smallest number in an array..

Answer / kalee

// Algorithm

Add the numbers directly into a set<double> varible, while getting the values from keyboard. First element of this set will be the least integer

This is a bad answer , if memory constraint is to be taken into account

Is This Answer Correct ?    4 Yes 9 No

program to find a smallest number in an array..

Answer / belsia

void main()
{
int a[10];
for(i=0;i<10;i++)
scanf("%d",&a[i]);
for(i=0;i<10;i++)
{
if(a[i]>a[i+1])
{
temp=a[i];
a[i]=a[i+1];
a[i+1]=temp;
}
}
printf("The smallest element is %d",a[0]);
getch();
}

Is This Answer Correct ?    7 Yes 17 No

program to find a smallest number in an array..

Answer / atul kumar

#include<iostream.h>
void main()
{
int a, b[4]=[1,2,3,4];
a[0]=b[0];
for(i=1;i<=5;i++)
{
if(a>b[i])
{
a=b[i];
}
}
cout<<"smallest num"<<a;
}

Is This Answer Correct ?    7 Yes 18 No

Post New Answer

More C Interview Questions

what is a constant pointer in C

0 Answers  


Find MAXIMUM of three distinct integers using a single C statement

0 Answers  


What are the difference between a free-standing and a hosted environment?

0 Answers   Infogain,


write a c program to print "Welcome" without using semicolon in the whole program ??

15 Answers   Infosys, TCS,


wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }

3 Answers  






Is main() function predfined or userdefined?

11 Answers  


write a programme that inputs a number by user and gives its multiplication table.

2 Answers  


What is the scope of static variables in c language?

0 Answers  


Why is sprintf unsafe?

0 Answers  


What does the error 'Null Pointer Assignment' mean and what causes this error?

0 Answers   TISL,


When would you use a pointer to a function?

0 Answers  


Explain pointer. What are function pointers in C?

0 Answers   HCL,


Categories