C Programming Code Examples
C > If Else and Switch Case Code Examples
Program to find maximum using ladder if...else...if
C Find Volume and Surface Area of Sphere -
C Program calculates the volume and surface area of sphere. The formula used in this code Surface_area = 4 * Pi * r2, Volume = 4/3 * Pi * r3 where r is the radius of the sphere, Pi= 22/7
Counting program code in The C language -
Counting is sequence of whole numbers in ascending order without zero. Developing a program of counting in C language is easy and we shall see here in this chapter. Count
C++ Program to Perform Greedy Coloring -
Give all its neighbouring colours a vertex, but before that keep a check on used colours and unused colours. 'Only assign', unused colours to the upcoming vertex. The problem takes a
C How to Access the Address of a Variable -
In this program code, we have a variable j of int type. The value of j is 10 and this value must be stored somewhere in the memory, right? A memory space is allocated for each
C++ Find the HCF and LCF of 2 Numbers -
Enter the two number, to find the HCF and LCF of the given two number to display the value of the HCF and LCM of the 2 numbers on the output screen as shown here in code
Check a Given Number is Perfect Number -
This C program code checks whether a given number is perfect number. Perfect number is a number which is equal to sum of its divisor. For eg,divisors of 6 are 1,2 and 3. The sum of
C++ Program Find Quotient & Remainder -
In program, user enter 2 integers (divisor and dividend), computes quotient and remainder. To compute 'quotient and remainder', divisor and dividend should be integers. The division
C++ Generate Different Random Numbers -
To generate random numbers in C++, use the function rand() to generate and print random numbers. So If you want to generate different different random numbers at each time when