Skip to main content

Featured

Merge Sort in C++

  Merge Sort in C++ Introduction Merge Sort is a popular sorting algorithm that follows the Divide and Conquer approach. It divides an array into smaller subarrays, recursively sorts those subarrays, and finally merges the sorted subarrays to produce a completely sorted array. In this tutorial, we will learn how to implement Merge Sort in C++ . The program divides the array into two halves using the mid index, recursively sorts both halves, and then combines them using the merge() function. Merge Sort has a time complexity of O(n log n) in the best, average, and worst cases. Table of Contents Algorithm C++ Program Input Sample Output Output Explanation Dry Run Flow of Execution Time Complexity Space Complexity Applications Key Points Interview Questions Frequently Asked Questions Keywords Conclusion Algorithm Start the program. Read the size of the array. Read the array elements from the user. Call the mer...

C Program to Reverse a Number Using While Loop

✅ C Program to Reverse a Number Using While Loop

#include <stdio.h>

int main() {
    int num, reversed = 0, remainder;

    printf("Enter a number: ");
    scanf("%d", &num);

    while(num != 0) {
        remainder = num % 10;          
        reversed = reversed * 10 + remainder; 
        num = num / 10;                
    }

    printf("Reversed number = %d", reversed);

    return 0;
}
  

๐Ÿ“˜ Explanation:

This program reverses a given number using a while loop. It extracts digits one by one from the end and rebuilds the number in reverse order.

  • Take user input using scanf().
  • Use num % 10 to extract the last digit.
  • Multiply reversed number by 10 and add the extracted digit.
  • Remove last digit using num = num / 10.
  • Repeat until the number becomes 0.

This program is commonly asked in beginner coding interviews and programming exams.

๐Ÿงพ Sample Output:

Enter a number: 1234
Reversed number = 4321
  

๐Ÿ”‘ Keywords:

C program to reverse a number, reverse number in C using while loop, C programming examples, beginner C programs, number manipulation in C, C logic building program

๐Ÿ“Œ Hashtags:

#CProgramming #ReverseNumber #LearnC #CodingForBeginners #WhileLoop #1printf

๐Ÿ” Search Description:

Learn how to reverse a number in C using while loop. Beginner-friendly program with step-by-step explanation and sample output.

Comments

Popular Posts

๐ŸŒ™