Skip to content
Xiith
  • Home
  • C
  • C++
  • C#
  • Java
  • Python
  • Kotlin
  • R
  • Go
  • JavaScript
  • About us
Search for:
Menu Close
  • Home
  • C
  • C++
  • C#
  • Java
  • Python
  • Kotlin
  • R
  • Go
  • JavaScript
  • About us

C Program to find quotient and remainder

In this program, You will learn how to find quotient and remainder in c. 2 = 10 / 5 0 = 10 % 5 Example: How to find quotient and…

Continue Reading C Program to find quotient and remainder

C Program to print even and odd numbers between 1 to n and their sum

In this program, You will learn how to print even and odd numbers between 1 to n and their sum in c. 1 2 3 4 5 6 7 8…

Continue Reading C Program to print even and odd numbers between 1 to n and their sum

C Program to print table of any number

In this program, You will learn how to print a table of any number in c. 16 Table is : 16 32 48 64 80 96 112 128 144 160…

Continue Reading C Program to print table of any number

C Program to find the largest of three numbers using nested if

In this program, You will learn how to find the largest of three numbers using nested if in c. 10 20 30 => 10 40 50 30 => 30 Example:…

Continue Reading C Program to find the largest of three numbers using nested if

C Program to find the smallest number among three numbers

In this program, You will learn how to find the smallest number among the three numbers in c. 10 20 30 => 10 40 50 30 => 30 Example: How…

Continue Reading C Program to find the smallest number among three numbers

C Program to check a number is even or odd

In this program, You will learn how to check a number is even or odd in c. if (num % 2 == 0) { } Example: How to check a…

Continue Reading C Program to check a number is even or odd

C Program to find the square root of a number

In this program, You will learn how to find the square root of a number in c. float r = sqrt(n) Example: How to find the square root of a…

Continue Reading C Program to find the square root of a number

C Program to find the average of n numbers

In this program, You will learn how to find the average of n numbers in c. (10 + 20 + 30 + 40 + 50) / 5 = 30.000000 Example:…

Continue Reading C Program to find the average of n numbers

C Program to find the average of 5 subjects

In this program, You will learn how to find an average of 5 subjects in c. (2 + 3 + 4 + 5 + 6) / 5 = 4.000000 Example:…

Continue Reading C Program to find the average of 5 subjects

C Program to add two numbers

In this program, You will learn how to add two numbers in c. 30 = 20 + 10 40 = 20 + 20 Example: How to add two numbers in…

Continue Reading C Program to add two numbers
  • Go to the previous page
  • 1
  • …
  • 9
  • 10
  • 11
  • 12

Recent Posts

  • JavaScript Program to find quotient without using the division operator
  • JavaScript Program to find quotient and remainder
  • JavaScript Program to print table of any number
  • JavaScript Program to find the largest of three characters
  • JavaScript Program to find the largest of three numbers using nested if
Xiith is created for educational, experimental, and schooling purpose. Examples on Xiith are made easier to make a better or basic understanding. Tutorials, testimonials, and examples are continuously checked to avoid delusion, but we cannot take complete responsibility of all programs on Xiith. When you are operating this site, you have to agree to read and accept our terms of use, cookie and privacy policy. Copyright © 2020 by Xiith. All Rights Reserved. About us.