how to find the largest of given numbers in an array
Answers were Sorted based on User's Feedback
Answer / jvhariharan
void main()
{
int a[10],i,max,m;
pf("enter the range of array");
sf("%d",&m);
pf("enter the values:");
for(i=0;i<m;i++)
{sf("%d",&a[i]);
}
max=a[0];
for(i=1;i<m;i++)
{if(a[i]>max)
{max=a[i];
}}
pf("the max no:%d",max);
}
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / anmol.s.fattepur
void ANMOL()
{
int a[10],i,max,m;
pf("enter the range of array");
sf("%d",&m);
pf("enter the values:");
for(i=0;i<m;i++)
{sf("%d",&a[i]);
}
max=a[0];
for(i=1;i<m;i++)
{if(a[i]>max)
{max=a[i];
}}
pf("the max no:%d",max);
}
| Is This Answer Correct ? | 1 Yes | 0 No |
what is the new version of c++
1 Answers Ignou, Pramata, Satyam,
What are constructors in oop?
In which cases you use override and new base?
diff between Abstract class Interfaces?
Explain polymorphism? What r the types of polymorphism? pls give examples?
what is the difference between containership and inheritence?
What is polymorphism and its types?
What will happen when the following code is run: int x; while(x<100) { cout<<x; x++; } 1) The computer will output "0123...99" 2) The computer will output "0123...100" 3) The output is undefined
What is class encapsulation?
What is object in oop with example?
What is the main feature of oop?
How oops is better than procedural?