×
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
2163    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
All troubles come to an end when the ego dies
Sri Sri Ramakrishna Paramahamsa
1525
79.49
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     53834
25/06/2018     44915
01/01/2018     43494
28/06/2017     41068
02/08/2017     40046
01/08/2017     34089
06/07/2017     33920
15/05/2017     33173
11/09/2018     29919
14/07/2017     29627
softetechnologies