-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathL103.c
32 lines (31 loc) · 762 Bytes
/
L103.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
Author :- Rajeshwari
purpose :- solving homework problem
Date :- 23/12/21 Thursday.
Date of modification :-
problem statement
write a program to accept array elements and also accept element to search for write the logic to print
how many times specified element is present in that array
useing your knowledge,flag
*/
#include<stdio.h>
#include<conio.h>
void main()
{
int m[10],num,i,flag=0;
printf("enter element for an array\n");
for (i=0;i<=9;i++)
{
scanf("%d",&m[i]);
}
printf("enter a digit to search in array\n");
scanf("%d",&num);
for(i=0;i<=9;i++)
{
if(m[i]==num)
{
flag++;
}
}
printf("%d is present in this array %d times",num,flag);
}