C Programming Code Examples
C > Linked Lists Code Examples
C Program to Check whether 2 Lists are Same
How to Call a Function using this Pointers -
How to declare a function pointer and how to call a function using this pointer in C. We can have concept of Pointer to a function known as function pointer in C. In this C tutorial, we
C Number of Days in a Month Switch Case -
Find number of Days in a Month using switch case - best approach. Lets Observe the above program carefully for a moment. In the above program we are performing same action on...
Program Code Find Factorial of a Number -
Program to input a number and calculate its factorial using for loop. Factorial of a number n is product of all positive integers less than or equal to n. It is denoted as n!. ex. 5! = 120
Exception Handling Multiple Catch in C++ -
In C++ code, 'Declare and define' the function test(). Within the try block check whether the value is 'greater than zero' or not. If the value greater than zero 'throw the value' and catch
Printing 100 Ramanujan Numbers 2 Ways -
C++ Sample code Print first 100 "Ramanujan Numbers" by TWO WAYS 1st way is printing ramunajan numbers from RN taking RN from 0 to INFINITY & print first 100 numbers. 2nd
C++ Program to Implement Ternary Tree -
C++ program implements the ternary tree, is a tree data structure in which each node has at most three "child nodes", distinguished as "left", "mid" and "right". Nodes with children
Program calculate & print the value of nCr -
In the following C program we are calculating & displaying the value of nCr. nCr can also be represented as C(n,r). C Language function is used to find the factorial of given number and
C Find Sum of Natural numbers in a range -
Give a meaningful name to the function, say sumOfNaturalNumbers(). The function must accept two inputs i.e. the lower & upper limit to find sum. Pass two integer parameters to