C Program Example To Search Given Number In Array
This Article From Learn c programming in Hindi Will help you to learn To Search Given Number In Array, C programming language Example and check out
"selection sort program in c", "socket programming in c", "merge sort
program in c","Kruskal's algorithm in c", "for loop c programming", "c
struct example","simple program in c language", "simple CPP program", "c
programming practice questions", "c program using for loop",
"programming using c", "hello world program in c", "if statement in c ".
![]() |
C Programming Example |
नीचे C Program Example किसी दिए गए नंबर को एक ऐरे में सर्च करेगा और मौजूद होने पर सर्च किए गए नंबर की लोकेशन को दिखाएगा।
Source Code For C Programming Example
#include<stdio.h> int main() { int arr[250], search, n, i; printf("Please enter how many elements should be available in an array\n"); scanf("%d",&n); printf("\nPlease enter %d numbers or integers one by one", n); for (i = 0; i < n; i++) scanf("%d", &arr[i]); printf("\nPlease enter the number you want to search"); scanf("%d", &search); for (i = 0; i < n; i++) { if (arr[i] == search) { printf("\n%d is present at location %d\n", search, i+1); break; } } if (i == n) printf("%d is not available in the array.\n", search); return 0; }
Output
Please enter how many elements should be available in an array 3 Please enter 3 numbers or integers 10 20 30 Please enter the number you want to search 20 20 is present at location 2