write a function that takes an integer array as an input and
finds the largest number in the array. You can not sort
array or use any API or searching needs?
Answers were Sorted based on User's Feedback
Answer / pawan
#include<iostream>
using namespace std;
int main()
{
int name[5],big,i;
for(i=0; i<=4; i++) {
cout << "Enter a value" << i << ":";
cin >> name[i];
}
cout << "name contains:";
for(i=0; i<=4; i++) {
cout << name[i]<< "\n";
}
big = name[0];
for(i = 0; i <= 4; i++) {
if(name[i] > big)
big = name[i];
}
cout << "The Bigest Number::" << big << endl;
return 0;
}
Is This Answer Correct ? | 39 Yes | 0 No |
Answer / pawan
By using dynamic memory allocation..............
#include<iostream>
#include<new>
using namespace std;
int main()
{
int big,i,*p,sz;
cout << "Enter the size of an array u wanted:";
cin >> sz;
try {
p = new int(sz);
}catch(bad_alloc xa) {
cout << "allocation failure";
return 1;
}
for(i=0; i<sz; i++) {
cout << "Enter a value" << i << ":";
cin >> p[i];
}
cout << "name contains:";
for(i=0; i<sz; i++) {
cout << p[i]<< "\n";
}
big = p[0];
for(i = 0; i < sz; i++) {
if(p[i] > big)
big = p[i];
}
cout << "The Bigest Number::" << big << endl;
return 0;
}
Is This Answer Correct ? | 6 Yes | 1 No |
what are the characteristics of oops?
What is the difference between const int *ptr and int const *ptr???
How is exception handling carried out in c++?
why we call c++ is object oriented lanaguage
What is new keyword in oops?
Which keyword is written to use a variable declared in one class in the other class?
write a function that takes an integer array as an input and finds the largest number in the array. You can not sort array or use any API or searching needs?
2 Answers IBMS, Zycus Infotech,
what is the virtual function overhead, and what is it used for ? i hope i can get and appropriate answers, thanks a lot....
What makes a language oop?
What is the difference between class and object?
What is destructor in oop?
What do you mean by overloading?