Computer Science, asked by abdiq2020, 8 months ago

Write a c++ program to search the array element. Enter a value from the keyboard and find out the location of the entered value in the array. If the entered number is not found in the array display the message ―Number is not found.

Answers

Answered by shanu9937
0

Answer:

this is yours answer if you like then follow me and give like

Attachments:
Answered by siyagharat
0

Answer:

#include <stdio.h>

int main() {

int a[1000],i,n;

printf("Enter size of array: "); scanf("%d",&n);

printf("Enter %d elements in the array : ", n);

Explanation:

Similar questions