Structure of the Problem Requirements
Array is a Data Structure which hold the record on different index. In this problem we learn how to know the index number of an array. The user will enter five digits and then after this enter a digit from these digits . As the reply the program will give output which is the index number of that specific number.
Source Code
using namespace std;
int main ()
{
int num [5];
int index=0;
for(int i=0;i<5;i++)
{
cout<< " Enter Your Number :";
cin>>num[i];
}
cout<<" Enter the Number to get it index number : ";
cin>>index;
for (int i =0;i<5;i++)
{
if(num[i]==index)
{
cout<<" \n \n Your Number Exist in Array Index :"<<i;
}
}
}
Output of the Program
![]() |
| Index Number |

