Courses
Sale
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
C++
3.8K+ articles
C++ Programs
1.5K+ articles
C Language
1.3K+ articles
C Programs
441+ articles
Numbers
328+ articles
ASCII
153+ articles
C-Functions
90+ articles
C-String
58+ articles
C-Arrays
52+ articles
C Basic Programs
72 posts
Recent Articles
C Program to Traverse an Array in Reverse
Last Updated: 23 July 2025
Write a C program to traverse a given array in reverse order that contains N elements.ExamplesInput: arr[] = {2, -1, 5, 6, 0, -3}Output: -3 0 6 5 -1 2Input: arr[] = {4, 0,...
read more
C Language
C-Arrays
C Basic Programs
C Program to Traverse a Multi-Dimensional Array
Last Updated: 23 July 2025
Write a C program to traverse a given multi-dimensional array that contains N elements.ExamplesInput: arr[2][3] = {{1, 2, 3}, {4, 5, 6}}Output: 1 2 3 4 5 6Inp...
read more
C Programs
C Language
C-Arrays
C Basic Programs
Your First C Program
Last Updated: 23 July 2025
Like in most of the programming languages, program to write the text "Hello, World!" is treated as the first program to learn in C. This step-by-step guide shows you how t...
read more
C Programs
C Language
C Basic Programs
How to Read Data Using sscanf() in C?
Last Updated: 23 July 2025
In C, sscanf() function stands for "String Scan Formatted". This function is used for parsing the formatted strings, unlike scanf() that reads from the input stream, the ...
read more
C Programs
C Language
Picked
C-Functions
C Basic Programs
misc-c
How to Reverse a String in C?
Last Updated: 23 July 2025
In C, a string is a sequence of characters terminated by a null character (\0). Reversing a string means changing the order of the characters such that the characters at t...
read more
C Programs
C Language
Picked
C-String
C Strings Programs
C Basic Programs
How to Find Maximum Value in an Array in C?
Last Updated: 23 July 2025
In C, arrays are data structures that allow the user to store a collection of data of the same type. In this article, we will learn how we can find the maximum value in an...
read more
C Programs
C Language
Picked
Basic Coding Problems
C-Arrays
C Basic Programs
C Examples
Simple Personal Diary Management System in C
Last Updated: 23 July 2025
Keeping a personal diary has been a timeless practice for a lot of individuals to reflect on their thoughts and experiences. In this article, we will look at a simple pers...
read more
C Language
Geeks Premier League
C Projects
C Basic Programs
Geeks Premier League 2023
Reverse String in C
Last Updated: 05 December 2024
In C, reversing a string means rearranging the characters such that the last character becomes the first, the second-to-last character becomes the second, and so on. In th...
read more
C Programs
C Language
C-String
C Basic Programs
C++ Program To Find Sum of Fibonacci Numbers at Even Indexes Upto N Terms
Last Updated: 17 August 2026
The Fibonacci sequence is a sequence in which each term is obtained by adding the previous two terms. In this article, we will learn to find the sum of Fibonacci numbers a...
read more
C++
C Basic Programs
C++ Program To Calculate the Power of a Number
Last Updated: 19 August 2026
Given two integers x and n, the task is to calculate (x^n). Different approaches can be used, ranging from simple repeated multiplication to efficient binary exponentiatio...
read more
C++ Programs
C++
C Basic Programs
C++ Program to Check Whether a Number is Palindrome or Not
Last Updated: 14 January 2026
A palindrome number is a number that remains the same even if its digits are reversed. In this article, we will learn how to check a given number is a palindrome or not in...
read more
C++ Programs
C++
C Basic Programs
C++ Program To Find Compound Interest
Last Updated: 12 August 2026
Compound interest is the interest calculated on the principal amount as well as the interest accumulated during previous periods. It is commonly used for loans, investment...
read more
C++ Programs
C++
C Basic Programs
C++ Program To Find Factorial Of A Number
Last Updated: 03 June 2026
The factorial of a number is a mathematical operation commonly used in permutations, combinations, probability, and various mathematical computations.Defined only for non-...
read more
C++ Programs
C++
C Basic Programs
C++ Program To Find Prime Numbers Between Given Interval
Last Updated: 18 August 2026
A prime number is a natural number greater than 1 that has exactly two positive factors: 1 and the number itself. The first few prime numbers are 2, 3, 5, 7, 11, 13, 17, 1...
read more
C++ Programs
C++
C Basic Programs
C++ Program To Find Simple Interest
Last Updated: 12 August 2026
Simple interest is the interest calculated on the original principal amount for a given rate and time period. In C++, it can be calculated using a simple arithmetic formul...
read more
C++ Programs
C++
C Basic Programs
1
2
3
4
5
✕