Courses
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
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.4K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Java
9.4K+ articles
Misc
7.7K+ articles
Mathematics
5.6K+ articles
misc-c
12 posts
Recent Articles
Popular Articles
How to Find the Type of an Object in C++?
Last Updated: 23 July 2025
In C++, every variable and object has a type. The type of an object determines the set of values it can have and what operations can be performed on it. It’s often useful ...
read more
C++ Programs
C++
Picked
C-Data Types
CPP Examples
misc-c
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
Postorder Tree Traversal in Binary Tree in C
Last Updated: 23 July 2025
A binary tree is a hierarchical data structure in computer science. Each node in a binary tree can have at most two children: a left child and a right child. There are sev...
read more
C Language
Picked
C Examples
C-DSA
misc-c
Segment Tree in C
Last Updated: 27 May 2024
A Segment Tree is a data structure in C that helps us quickly perform operations (like finding the sum, minimum, or maximum) on a range of elements in an array. It’s like ...
read more
C Language
Picked
C-DSA
misc-c
C Program to Implement Sieve of Eratosthenes
Last Updated: 23 July 2025
The Sieve of Eratosthenes is a simple and efficient algorithm for finding all prime numbers up to a specified integer. It was created by the ancient Greek mathematician Er...
read more
C Language
Picked
C-DSA
misc-c
C Program to Implement Priority Queue
Last Updated: 24 May 2024
Priority queue is an abstract data type(ADT) in the computer science which is designed to the operate much like the regular queue except that each element has the certain ...
read more
C Language
Picked
C-DSA
misc-c
Bellman-Ford Algorithm in C
Last Updated: 23 July 2025
The Bellman-Ford algorithm helps find the shortest path from one starting point to all other points in a graph, even if some paths have negative weights. It's useful for n...
read more
C Language
Picked
C-DSA
misc-c
C Program to Implement Queue using Array
Last Updated: 23 July 2025
A queue is a linear data structure that follows the First-In-First-Out (FIFO) principle which means the elements added first in a queue will be removed first from the queu...
read more
C Programs
C Language
Picked
C Examples
C-DSA
misc-c
C Program to Implement Minimum Spanning Tree
Last Updated: 24 May 2024
A Minimum Spanning Tree is a subset of edges from a undirected graph that connects all vertices with minimum total weight and contains no cycle. The most common algorithms...
read more
C Language
Picked
C-DSA
misc-c
Implementation of Trie (Prefix Tree) in C
Last Updated: 24 May 2024
The Trie data structure is a tree-based data structure that is used to store the set of strings. Trie is also known as Prefix Tree or Digital Tree. Trie is used to store t...
read more
C Language
Picked
C-DSA
misc-c
Level Order Traversal in C
Last Updated: 23 July 2025
The Level Order Traversal is a traversal technique used to traverse a tree level by level from top to bottom and from left to right at each level of a tree. In this artic...
read more
C Programs
C Language
Picked
C Examples
C-DSA
misc-c
Implementation of B-Tree in C
Last Updated: 24 May 2024
The B-tree is a self-balancing ordered structured data that stores data in a set of pages and also allows efficient searching, insertion, and deletion operations. It has i...
read more
C Language
Picked
C-DSA
misc-c