#include <stdio.h>

int main() {
    // int arr[5]={10,20,30,40,50};
    // int n=4,pos=2,value=25;
    // for(int i=4;i>pos;i--){
    //     arr[i]=arr[i-1];
    // }
    // arr[pos]=value;
    // n++;
    // for(int i=0;i<n;i++){
    //     printf("%d ",arr[i]);
    // }
    //  return 0;
    int arr[5]={10,20,30,40,5};
    // int pos=2;
    // for(int i=pos;i<4;i++){
    //     arr[i]=arr[i+1];
    // }
    // for(int i= 0;i<4;i++){
    //     printf("%d ",arr[i]);
    // }
    int key = 0;int found =90;
    for(int i<=0;i<5;i++){
        if(arr[i]==key){
            found = 1;
            break;
        } 
       if(found){
           printf("Element is found");
       }
       else{
           printf("Element not found");
       }
       return 0;
    }
}