• C

Decision Control Instruction In C: IF

So far we've seen that the code in C program gets executed in sequential order i.e., as and when the…

  • C

Relational Operators In C

Relational Operators in C programming language return true(non-zero number) or false(0) value. They operate on 2 operands. Relational Operators ==…

  • C

Multiplication of 2 Numbers: C

In this video tutorial you can learn the procedure followed in C programming to multiply two numbers. Related Read: #include…

  • C

Subtraction of 2 Numbers: C

In this video tutorial you can learn the procedure followed in C programming to subtract two numbers. Related Read: #include…

  • C

Addition of 2 Numbers: C

In this video tutorial you can learn the procedure followed in C programming to add two numbers. Related Read: #include…

  • C

C Program to Calculate the Compound Interest

In this video tutorial lets learn how we can calculate Compound Interest by making use of simple arithmetic operations. #include…

  • C

C Program to Calculate the Simple Interest

In this video tutorial lets learn how we can calculate Simple Interest by making use of simple arithmetic operations. #include<stdio.h>…

  • C

Calculate Area of a Circle using math.h library: C

We can calculate area of circle if we know the value of its radius. So using that, we shall write…

  • C

Calculate Area of a Circle without using math.h library: C

We can calculate area of circle if we know the value of its radius. So using that, we shall write…

  • C

Swap 2 numbers using Multiplication and Division: C

In this video tutorial we shall learn how to swap two integer numbers without using a temporary variable and by…