wite a programme in c to linear search a data using flag and
without using flags?
Answers were Sorted based on User's Feedback
Answer / ruchi
#include<stdio.h>
#include<conio.h>
int main()
{
int n,i,a[15],num;
printf("\nHow many elements are there ");
scanf("%d",&n);
printf("\nEnter the elements ");
for(i=0;i<n;i++)
{
scanf("%d",&a[i]);
}
printf("\nEnter the element do you want to search ");
scanf("%d",&num);
for(i=0;i<n;i++)
{
if(a[i]==num)
{
printf("\nElement is present ");
break;
}
else if((a[i]!=num)&&(i==n-1
))
{
printf("\nElement is not present");
}
}
getch();
}
| Is This Answer Correct ? | 19 Yes | 8 No |
Answer / st0le
int linearSearch(int a[],int ub,int key)
{
for(int i=0;i<n;i++)
if(a[i] == key) return i;
return -1; //not found!
}
int linearSearch(int a[],int ub,int key)
{
int flag = 0;
for(int i=0;i<n;i++)
if(a[i] == key)
{ flag = 1; break; }
return (flag)? i:-1; //not found!
}
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / st0le
sorry, abt the typho in the previous post...
"ub" shud be "n"...
| Is This Answer Correct ? | 1 Yes | 2 No |
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
What is structure padding ?
what is the use of #pragma pack, wer it is used?
What is the use of getchar() function?
can we change the default calling convention in c if yes than how.........?
sum of two integers values only other then integer it should print invalid input.
wap in c to accept a number display the total count of digit
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
Explain a pre-processor and its advantages.
What is restrict keyword in c?
Write a C program to fill a rectangle using window scrolling
Differentiate between a structure and a union.