Division of 2 Numbers: C

In this video tutorial you can learn the procedure followed in C programming to divide two numbers.

 
#include < stdio.h >

int main()
{
    int a, b, c;

    printf("Enter 2 numbers for division\n");
    scanf("%d %d", &a, &b);

    c = a / b;

    printf("Division of %d and %d is %d\n", a, b, c);

    return 0;
}

Output:
Enter 2 numbers for division
10
5
Division of 10 and 5 is 2

You can write same program without using third variable to calculate division of 2 numbers, as below:

 
#include < stdio.h >

int main()
{
    int a, b;

    printf("Enter 2 numbers for division\n");
    scanf("%d %d", &a, &b);

    printf("Division of %d and %d is %d\n", a, b, (a/b));

    return 0;
}

Output:
Enter 2 numbers for division
10
5
Division of 10 and 5 is 2

Note: Instead of int you can take float variables too. That would help in taking both integer as well as real values from the user as input.

Division by 0

What if a user enters 0 for variable b. Any number divided by 0 will give undefined return. So lets handle the scenario using Decision Control Instruction In C: IF and inequality operator.

 
#include < stdio.h >

int main()
{
    int a, b;

    printf("Enter value for a and b, for division (a/b)\n");
    scanf("%d%d", &a, &b);

    if( b != 0 )
       printf("Division of %d and %d is %d\n", a, b, a/b);

    if( b == 0 )
       printf("You can't divide a number by 0\n");

    return 0;
}

Output 1:
Enter value for a and b, for division (a/b)
10
2
Division of 10 and 2 is 5

Output 2:
Enter value for a and b, for division (a/b)
10
0
You can’t divide a number by 0

Output 3:
Enter value for a and b, for division (a/b)
0
5
Division of 0 and 5 is 0

In above program, != is inequality operator. It returns true(non-zero number) if the operands are not equal. == is equality operator. It returns true(non-zero number) if the operands are equal.

Scanf(): For user input

In above c program we are asking user to enter the values for variable a and b. You can know more about scanf() method/function in this video tutorial: Using Scanf in C Program

Division of Two Numbers: C Programming


[youtube https://www.youtube.com/watch?v=QOhDxu0xbY8]

YouTube Link: https://www.youtube.com/watch?v=QOhDxu0xbY8 [Watch the Video In Full Screen.]


This video was produced as building block for our simple calculator application.

For full C programming language free video tutorial list visit:C Programming: Beginner To Advance To Expert

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 code appears in the source code. But today lets see how we can change the sequence of or order of execution using decision control instruction like if statement.

General form of if statement

if( some_condition )
statement;

By default, if statement executes only the next instruction present under it. But if you want to execute some block of code, then you must enclose it inside curly braces as shown below.

if( some_condition )
{
statement_1;
statement_2;
some_logic;
function_calls;
etc;
}

in above code, some_condition can be anything from a simple true(non-zero number) or false(0) or any expression returning 0 or any non-zero number.

Statements inside if statements curly braces can be anything from multi-line statements, function calls, some arithmetic operations etc.

 
#include < stdio.h >

int main()
{
    int a;
    printf("IBM\n");
    printf("Enter value for a \n");
    scanf("%d", &a);

    if(a > 10)
    {
        printf("Microsoft\n");
        printf("Oracle\n");
    }

    printf("Amazon\n");
    printf("Apple\n");    

    return 0;
}

Output:
IBM
Enter value for a
5
Amazon
Apple

Here user entered value for variable a is less than 10. So the code inside if block doesn’t get executed. So printing of Microsoft and Oracle gets skipped.

 
#include < stdio.h >

int main()
{
    int a;
    printf("IBM\n");
    printf("Enter value for a \n");
    scanf("%d", &a);

    if(a > 10)
    {
        printf("Microsoft\n");
        printf("Oracle\n");
    }

    printf("Amazon\n");
    printf("Apple\n");    

    return 0;
}

Output:
IBM
Enter value for a
14
Microsoft
Oracle
Amazon
Apple

For the same program, user entered value for variable a as 14, which is greater than 10. So all the company names gets printed on the console window as shown in above output section.

We can even remove condition statement inside if statement

 
#include < stdio.h >

int main()
{
    int a;
    printf("IBM\n");
    printf("Enter value for a \n");
    scanf("%d", &a);

    if(a)
    {
        printf("Microsoft\n");
        printf("Oracle\n");
    }

    printf("Amazon\n");
    printf("Apple\n");    

    return 0;
}

Output 1:
IBM
Enter value for a
1
Microsoft
Oracle
Amazon
Apple

Output 2:
IBM
Enter value for a
0
Amazon
Apple

Output 3:
IBM
Enter value for a
-5
Microsoft
Oracle
Amazon
Apple

In above example, when user enters 0 the condition becomes false, so the block of code inside if statement doesn’t get executed. When the user enters any number other than 0, its considered as true, so the code inside if statement gets executed.

Scanf(): For user input

In above c program we are asking user to enter the values for variable a and b. You can know more about scanf() method/function in this video tutorial: Using Scanf in C Program

Decision Control Instruction In C: IF


[youtube https://www.youtube.com/watch?v=ih-gHCBoQ0U]

YouTube Link: https://www.youtube.com/watch?v=ih-gHCBoQ0U [Watch the Video In Full Screen.]


For full C programming language free video tutorial list visit:C Programming: Beginner To Advance To Expert

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

== equality operator.
!= inequality operator.
> greater than operator.
< less than operator.
>= greater than or equal to operator.
<= less than or equal to operator.

== equality operator

 
#include < stdio.h >

int main()
{
    //Relational Operators

    int a = 10, b = 10;
    int temp;

    temp = (a == b);

    printf("value of temp is %d\n", temp);

    return 0;
}

Output:
value of temp is 1

 
#include < stdio.h >

int main()
{
    //Relational Operators

    int a = 10, b = 20;
    int temp;

    temp = (a == b);

    printf("value of temp is %d\n", temp);

    return 0;
}

Output:
value of temp is 0

!= inequality operator

 
#include < stdio.h >

int main()
{
    //Relational Operators

    int a = 10, b = 10;
    int temp;

    temp = (a != b);

    printf("value of temp is %d\n", temp);

    return 0;
}

Output:
value of temp is 0

 
#include < stdio.h >

int main()
{
    //Relational Operators

    int a = 10, b = 20;
    int temp;

    temp = (a != b);

    printf("value of temp is %d\n", temp);

    return 0;
}

Output:
value of temp is 1

> operator

 
#include < stdio.h >

int main()
{
    //Relational Operators

    int a = 20, b = 10;
    int temp;

    temp = (a > b);

    printf("value of temp is %d\n", temp);

    return 0;
}

Output:
value of temp is 1

< operator

 
#include < stdio.h >

int main()
{
    //Relational Operators

    int a = 20, b = 10;
    int temp;

    temp = (a < b);

    printf("value of temp is %d\n", temp);

    return 0;
}

Output:
value of temp is 0

>= operator

 
#include < stdio.h >

int main()
{
    //Relational Operators

    int a = 20, b = 10;
    int temp;

    temp = (a >= b);

    printf("value of temp is %d\n", temp);

    return 0;
}

Output:
value of temp is 1

<= operator

 
#include < stdio.h >

int main()
{
    //Relational Operators

    int a = 20, b = 10;
    int temp;

    temp = (a <= b);

    printf("value of temp is %d\n", temp);

    return 0;
}

Output:
value of temp is 0

Scanf(): For user input

In above c program we are asking user to enter the values for variable a and b. You can know more about scanf() method/function in this video tutorial: Using Scanf in C Program

Relational Operators In C


[youtube https://www.youtube.com/watch?v=8wlJ4bo110Y]

YouTube Link: https://www.youtube.com/watch?v=8wlJ4bo110Y [Watch the Video In Full Screen.]


Note: = is assignment operator. == is equality operator.

This video was produced as building block for our simple calculator application.

For full C programming language free video tutorial list visit:C Programming: Beginner To Advance To Expert

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 < stdio.h >

int main()
{
    int a, b, c;

    printf("Enter 2 numbers for multiplication\n");
    scanf("%d %d", &a, &b);

    c = a * b;

    printf("Multiplication of %d and %d is %d\n", a, b, c);

    return 0;
}

Output:
Enter 2 numbers for multiplication
25
5
Multiplication of 25 and 5 is 125

You can write same program without using third variable to calculate multiplication of 2 numbers, as below:

 
#include < stdio.h >

int main()
{
    int a, b;

    printf("Enter 2 numbers for multiplication\n");
    scanf("%d %d", &a, &b);

    printf("Multiplication of %d and %d is %d\n", a, b, (a*b));

    return 0;
}

Output:
Enter 2 numbers for multiplication
25
5
Multiplication of 25 and 5 is 125

Note: Instead of int you can take float variables too. That would help in taking both integer as well as real values from the user as input.

Scanf(): For user input

In above c program we are asking user to enter the values for variable a and b. You can know more about scanf() method/function in this video tutorial: Using Scanf in C Program

Multiplication of Two Numbers: C Programming


[youtube https://www.youtube.com/watch?v=AFbtnOAH7eE]

YouTube Link: https://www.youtube.com/watch?v=AFbtnOAH7eE [Watch the Video In Full Screen.]


This video was produced as building block for our simple calculator application.

For full C programming language free video tutorial list visit:C Programming: Beginner To Advance To Expert

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 < stdio.h >

int main()
{
    int a, b, c;

    printf("Enter value of a and b\n");
    scanf("%d%d", &a, &b);

    c = a - b;
    
    printf("Subtraction of %d and %d is %d\n", a, b, c);

    return 0;
}

Output:
Enter value of a and b
30
20
Subtraction of 30 and 20 is 10

You can write same program without using third variable to calculate subtraction of 2 numbers, as below:

 
#include < stdio.h >

int main()
{
    int a, b;

    printf("Enter value of a and b\n");
    scanf("%d%d", &a, &b);

    printf("Subtraction of %d and %d is %d\n", a, b, (a+b));

    return 0;
}

Output:
Enter value of a and b
30
20
Subtraction of 30 and 20 is 10

Note: Instead of int you can take float variables too. That would help in taking both integer as well as real values from the user as input.

Scanf(): For user input

In above c program we are asking user to enter the values for variable a and b. You can know more about scanf() method/function in this video tutorial: Using Scanf in C Program

Subtraction of Two Numbers: C Programming


[youtube https://www.youtube.com/watch?v=2cAMGtToJNE]

YouTube Link: https://www.youtube.com/watch?v=2cAMGtToJNE [Watch the Video In Full Screen.]


This video was produced as building block for our simple calculator application.

For full C programming language free video tutorial list visit:C Programming: Beginner To Advance To Expert