Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a program to search for an element in a given array.
If the array was found then display its position otherwise
display appropriate message in c language

Answer Posted / anuja kulkarni

#include<stdio.h>
#include<conio.h>

void main()
{
int a[5],i;
int ele,temp=0,pos=0;

clrscr();
printf("enter the array elements\n");
for (i=0; i<5; i++)
scanf("%d",&a[i]);
printf("Enter the element to be search\n");
scanf("%d",&ele);

// searching for the element

for (i=0; i<5; i++)
{
if (a[i]==ele)
{
temp=1;
pos=i;
}
}

if (temp==1)
printf("Element found %d , position==%d",ele,pos);
else
printf("Element not found\n");
} // end of main()

Is This Answer Correct ?    483 Yes 132 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is a pragma?

1047


how to make a scientific calculater ?

2067


Explain what is the best way to comment out a section of code that contains comments?

1131


What are the types of functions in c?

979


What is a null string in c?

1035


Can we declare variable anywhere in c?

966


What are the types of pointers in c?

1022


In a switch statement, explain what will happen if a break statement is omitted?

1067


How do I determine whether a character is numeric, alphabetic, and so on?

1128


Write a program to reverse a string.

1072


Why is c faster?

1098


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

1162


Explain the term printf() and scanf() used in c language?

1048


What will be your course of action for a push operation?

1110


please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

1770