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
write a program for the normal snake games find in most of the mobiles.
Explain Function Pointer?
Why c is a procedural language?
Did c have any year 2000 problems?
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.
What is a #include preprocessor?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is c token?
Explain what are reserved words?
What are runtime error?
What is 'bus error'?
Are global variables static in c?
What Is The Difference Between Null And Void Pointer?
What is wrong in this statement?
What is main function in c?