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 |
swapping program does not use third variable
How do you define a class in oop?
why c++ is a highlevel language
3 Answers Satyam, Tech Mahindra,
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
write string class as your own class in java without using any built-in function
What is object in oop?
How do you use inheritance in unity?
What do we mean by a hidden argument in C++?
write a program to find the largest of two numbers without using for,while,switch,if else, conditional operator and do while using c++ pgmng language
in the following, A D B G E C F Each of the seven digits from 0,1,2,3,4,5,6,7,8,9 is: a)Represented by a different letter in abov fig: b)Positioned in the fig abov so tht A*B*C,B*G*E,D*E*F are equal. wch does g represents? C
What is a template?
what is virtual function?
26 Answers Aspire, HP, Infosys, RoboSoft, TCS,