Skip to main content

Featured

C Program to Solve Two Sum Using Brute Force (With Algorithm & Output)

 Introduction The Two Sum problem is a popular coding interview question where we must find two indices of an array whose values add up to a given target. This program demonstrates a simple brute-force solution in C using nested loops and dynamic memory allocation. Problem Statement Given an integer array and a target value, return the indices of the two numbers such that they add up to the target. Each input has exactly one solution, and the same element cannot be used twice. The result should return the indices, not the values. If no solution exists, return NULL.  Algorithm / Logic Explanation Start the program. Traverse the array using a loop from index 0 to numsSize - 1 . Inside this loop, use another loop starting from i + 1 to numsSize - 1 . For every pair (i, j) , check if nums[i] + nums[j] == target . If condition becomes true: Allocate memory for 2 integers using malloc() . Store indices i and j . Set returnSize = 2 . Return the result poi...

C program to find the second largest element in an array using bubble sort

Second Largest Element in Array - C Program

๐Ÿ”น Find Second Largest Element in Array (C Program)

#include <stdio.h>

void secondLargest(int a[], int num)
{
    // Bubble sort the array in ascending order
    for(int i = 0; i < num - 1; i++)
    {
        for(int j = 0; j < num - i - 1; j++)
        {
            if(a[j] > a[j+1])
            {
                int temp = a[j];
                a[j] = a[j+1];
                a[j+1] = temp;
            }
        }
    }

    // After sorting, the second largest element will be at index num-2
    printf("Second largest element in the array: %d\n", a[num - 2]);
}

int main()
{
    int num;
    printf("Enter the size of the array:\n");
    scanf("%d", &num);

    if(num < 2)
    {
        printf("Invalid! Need at least 2 numbers to find the second largest element.\n");
        return 1;
    }

    int a[num];
    printf("Enter %d elements:\n", num);
    for(int i = 0; i < num; i++)
    {
        scanf("%d", &a[i]);
    }

    secondLargest(a, num);
    return 0;
}
  

๐Ÿ“˜ Explanation:

  • Reads the size and elements of the array.
  • Sorts the array using Bubble Sort in ascending order.
  • The second largest number will be at index num - 2 after sorting.
  • Checks for at least 2 elements as a requirement.

๐Ÿงช Sample Output:

Enter the size of the array:
5
Enter 5 elements:
3 8 2 7 4
Second largest element in the array: 7
    

๐Ÿท️ Keywords:

second largest in C, array sorting, C program for array, bubble sort, C beginner exercise, top two elements

Comments

Popular Posts

๐ŸŒ™