Answer to Question #3321 in C++ for mukunda

Question #3321
Write a program to find the number in the array.
1
Expert's answer
2011-07-11T09:58:08-0400
#include <iostream>
using namespace std;

int main()
{
const int N = 5;
int arr[N] = { 10, 46, -37, 8, 19 };

int number_to_find = 8;
for (int i = 0; i < N; ++i) {
& if (arr[i] == number_to_find) {
& cout << "Number " << number_to_find << " is found at index " << i << endl;
& break;
& }
}
return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS