×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
enumerated data type in C Language - MAKAUT / WBUT MCA 2011 Sum of its Individual Digits Repeatedly - MAKAUT / WBUT MCA 2011
Binary Searching using C - MAKAUT / WBUT MCA 2011 - C Language
1651    Arnab De    16/12/2019

Write a C-program to implement binary searching. [WBUT MCA 2011]

For binary search, we have to take an array which is sorted in asending order. If given array is not sorted, then we have to sort it by any sorting technique. After then binary search is possible. It is faster than lenear searching.

softetechnologies
#include 

int main()
{
    int a[]={10,15,17,20,28,32,40,41,89};
    int found,fl=0,min=0,max=8,mid;
    printf("Enter a number for search : ");
    scanf("%d",&found);
    
    while(minfound)
        {
            max--;
        }
        else
        {
            min++;
        }
    }
    if(fl)
    {
        printf("%d is found",found);
    }
    else
    {
        printf("%d is not found",found);
    }

    return 0;
}
softetechnologies

Output:
Enter a number for search : 28
28 is found

enumerated data type in C Language - MAKAUT / WBUT MCA 2011 Sum of its Individual Digits Repeatedly - MAKAUT / WBUT MCA 2011
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Albert Einstein
Unthinking respect for authority is the greatest enemy of truth.
Albert Einstein
2271
64.28
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     47382
25/06/2018     39477
01/01/2018     39090
28/06/2017     36982
02/08/2017     35706
01/08/2017     29942
06/07/2017     29728
15/05/2017     29214
14/07/2017     25097
11/09/2018     24243
softetechnologies