program to find a smallest number in an array
Answer Posted / subash
&a[i]);
i=0;
for(int j=0;j<n-1;j++)
{
if(a[j+1]<a[j])
{
temp=a[j+1];
a[j+1]=a[j];
a[j]=temp;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is queue in c?
In which layer of the network datastructure format change is done
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
why we wont use '&' sing in aceesing the string using scanf
Is file a keyword in c?
Who is the founder of c language?
Explain the priority queues?
How can I convert a number to a string?
What's the total generic pointer type?
What is the difference between if else and switchstatement
Why do we need functions in c?
Is it better to use malloc() or calloc()?
How to establish connection with oracle database software from c language?
What does char * * argv mean in c?