write a program in c to read array check element is present or
not?

Answer Posted / tatukula

#include<stdio.h>
int main()
{
char array[10]={0,1,2,3,4,5,6,7,8,9};
int check;
int i,flag=0;

printf("enter number you want to check in array\n");
scanf("%d",&check);

for(i=0;i<=sizeof(array);i++)
{
if(array[i] == check)
{
flag = 1;
break;
}
}

if(flag)
printf("element is present in the array\n");
else
printf("element is not present in the array\n");
}

input: 4
output: element is present in the array

input: 45
output: element is not present in the array

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

program for reversing a selected line word by word when multiple lines are given without using strrev

2153


What is a structure member in c?

736


What is enumerated data type in c?

831


What are pointers? Why are they used?

822


Describe the difference between = and == symbols in c programming?

1001


What are dangling pointers in c?

817


What is the easiest sorting method to use?

797


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

1135


Why c is known as a mother language?

830


What is a class c rental property?

837


What is the time and space complexities of merge sort and when is it preferred over quick sort?

862


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5717


What is the difference between c and python?

791


What is structure in c explain with example?

836


How do you define CONSTANT in C?

851