×
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
1859    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.
Sri Sri Ramakrishna Paramahamsa
Have love for everyone, no one is other than you.
Sri Sri Ramakrishna Paramahamsa
6829
72.11
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     51825
25/06/2018     43668
01/01/2018     42784
28/06/2017     40516
02/08/2017     39335
01/08/2017     33545
06/07/2017     33299
15/05/2017     32662
14/07/2017     28872
11/09/2018     28679
softetechnologies