πŸ”₯πŸ”₯ Practice Set of Chapter 4 πŸ”₯πŸ”₯

 πŸ”₯Table of any number by C language: set the value test condition in loop as i<=10 to print the table till the ultiplication of 10.

#include <stdio.h>

int main()
{
    int ai;
    printf("Enter the digit to get table of that number:\n");
    scanf("%d", &a);
    for (i = 1i <= 10i++)
    {
        printf("Table of %d x %d = %d\n"aia * i);
    }

    return 0;
}

πŸ”₯Reverse table of the given digit by c in this we have to we have to dont give any test condition in loop just and decrement the loop.

#include <stdio.h>

int main()
{
    int ai;
    printf("Enter the digit to get reverse table of that digit:");
    scanf("%d", &a);
    for (i = 10ii--)
    {
        printf("Table of %d x %d = %d\n"aia * i);
    }
    return 0;
}

πŸ”₯ πŸ”₯πŸ”₯πŸ”₯Find the Prime number program by c which means prime is divided by only self or with 1 so we have to 

#include <stdio.h>

int main()
{
    int ai = 2prime = 0;
    printf("Enter the number to find it is Prime or not: ");
    scanf("%d", &a);
    //BY USING FOR LOOP
    // for (i = 2; i < a; i++)
    // {
    //     if (a % i == 0)
    //     {
    //         prime = 1;
    //     }
    // }
    //BY USING WHILE LOOP
    // while (i < a)
    // {
    //     if (a % i == 0)
    //     {
    //         prime = 1;
    //     }
    //     i++;
    // }
    //BY USING DO WHILE LOOP
    do
    {
        if (a % i == 0)
        {
            prime = 1;
        }
        i++;
    } while (i < a);

    if (prime == 1)
    {
        printf("%d is not Prime Number\n"a);
    }
    else
    {
        printf("%d is Prime Number\n"a);
    }

    return 0;
}

πŸ”₯πŸ”₯ SUM = SUM +i ; || SUM +=i;

#include <stdio.h>

int main()
{
    int ai = 1sum = 0;
    printf("Enter the number to add\n");
    scanf("%d", &a);

    // for (i = 1; i <= a; i++)
    // {
    //     sum += i;
    // }
    // while (i <= a)
    // {
    //     sum = sum + i;
    //     i++;
    // }
    do
    {
        sum = sum + i;
        i++;
    } while (i <= a);

    printf("Additon of (1 to %d): %d\n"asum);
    return 0;
}

πŸ”₯

#include <stdio.h>

int main()
{
    int aitable = 0sum = 0;
    printf("Enter the Number to get sum of that table:");
    scanf("%d", &a);
    for (i = 1i <= 10i++)
    {
        table = a * i;
        printf("Table of %d x %d = %d\n"aitable);
        sum = sum + table;
    }
    printf("Addition of %d Table is: %d\n"asum);
    return 0;
}

d

#include <stdio.h>

int main()
{
    int ai = 1factorial = 1;
    printf("Enter the number to find the factorial:");
    scanf("%d", &a);
    // for (i = 1; i <= a; i++)
    // {
    //     factorial = factorial * i;
    //     // printf("Factorial of %d:", factorial);
    // }
    while (i <= a)
    {
        factorial = factorial * i;
        i++;
    }
    printf("Factorial of %d: %d"afactorial);
    return 0;
}

Comments

Popular Posts