C Programming Archives - SANSKAR'S CODE https://sanskarsontakke.com/category/c-programming/ Elevating Ideas through Code Mon, 20 May 2024 09:39:02 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 Change text Color In C https://sanskarsontakke.com/2024/05/20/change-text-color-in-c/ https://sanskarsontakke.com/2024/05/20/change-text-color-in-c/#respond Mon, 20 May 2024 08:39:11 +0000 https://sanskarsontakke.com/?p=150 Change Text Color in C To change the text color in C you need to install my ‘.c’ file using the link below : Change-Colour After downloading the file copy it and paste it in C > MinGW > include Then you need to include my file like this ‘#include <Change_Colour.c>‘ The basic code will ... Read more

The post Change text Color In C appeared first on SANSKAR'S CODE.

]]>
Change Text Color in C

To change the text color in C you need to install my ‘.c’ file using the link below :

Change-Colour

After downloading the file copy it and paste it in C > MinGW > include

Then you need to include my file like this ‘#include <Change_Colour.c>

The basic code will be :

#include <stdio.h>
#include <Change_Colour.c>

int main()
{
    
    return 0;
}

Simple Functions

Now to change color the functions are as follows :

Black change_colour_to_black();
Red change_colour_to_red();
Green change_colour_to_green();
Yellow change_colour_to_yellow();
Blue change_colour_to_blue();
Purple change_colour_to_purple();
Cyan change_colour_to_cyan();
White change_colour_to_white();

By using these functions you can change the color of the output text.

Advanced Functions

There is one advanced function in this file : change_colour(color_val, bold);

The color can be changed by the value of the parameter ‘color_val’.

The following table shows describes it :

0 Black
1 Red
2 Green
3 Yellow
4 Blue
5 Purple
6 Cyan
7 White

Now for the second parameter ‘bold’ there can be 2 values ‘1’ or ‘0’ as describes in the following table:

0 Un Bold
1 Bold

The code can be like this as follows :

#include <stdio.h>
#include <Change_Colour.c>

int main()
{
    printf("\n");

    change_colour_to_black();
    printf("black \n");
    change_colour_to_blue();
    printf("blue\n");
    change_colour_to_cyan();
    printf("cyan\n");
    change_colour_to_green();
    printf("green\n");
    change_colour_to_purple();
    printf("purple\n");
    change_colour_to_red();
    printf("red\n");
    change_colour_to_white();
    printf("white\n");
    change_colour_to_yellow();
    printf("yellow\n");

    change_colour(7, 0);
    printf("Text unbold\n");
    change_colour(7, 1);
    printf("Text bold\n");

    printf("\n");

    return 0;
}

Output :

The post Change text Color In C appeared first on SANSKAR'S CODE.

]]>
https://sanskarsontakke.com/2024/05/20/change-text-color-in-c/feed/ 0
Loading Screen In C Programming https://sanskarsontakke.com/2024/05/19/loading-screen-in-c/ https://sanskarsontakke.com/2024/05/19/loading-screen-in-c/#respond Sun, 19 May 2024 04:13:44 +0000 https://sanskarsontakke.com/?p=107 In this tutorial I will tell you how to make a loading screen in C with my ‘.c’ file. So for this you will need ‘Loading Screen.c’ which you can get using the link below : Loading-Screen-C After downloading the file copy it and paste it in C > MinGW > include The basic code ... Read more

The post Loading Screen In C Programming appeared first on SANSKAR'S CODE.

]]>
In this tutorial I will tell you how to make a loading screen in C with my ‘.c’ file.

So for this you will need ‘Loading Screen.c’ which you can get using the link below :

Loading-Screen-C

After downloading the file copy it and paste it in C > MinGW > include

The basic code will be :

#include <stdio.h>
#include <Loading Screen.c>

int main()
{
    return 0;
}

Here we have included the ‘Loading Screen.c‘ file.

Now to add a loading screen we will use ‘loading_screen()

The parameters are as follows :

No Of Sections No of Section eg : 10, 20
Delay per Section Delay per Section in milliseconds (1 second = 1000 millisecond)
Type Type of the Loading Screen (No Of Section 20 in each)

1] |####################|

2] |====================|

3] |>>>>>>>>>>>>>>>>>>>>|

4] |********************|

5] |——————–|

X position X position on the screen
Y position  Y position on the screen
Color Color of the Loading Screen

0] Black                                              2] Green                                           4] Blue                                      6] Cyan

1] Red                                                 3]  Yellow                                         5] Purple                                   7] White

Arrow Arrow while loading.

0]No

1]Yes

Now you can modify the code like this :

#include <stdio.h>
#include <Loading Screen.c>

int main()
{
    loading_screen(20, 50, 1, 5, 5, 1, 1);
    return 0;
}

Output :

 |####################|

I we put type = 2 and arrow = 1 then the loading screen will be :

 

The post Loading Screen In C Programming appeared first on SANSKAR'S CODE.

]]>
https://sanskarsontakke.com/2024/05/19/loading-screen-in-c/feed/ 0
Functions in C Programming https://sanskarsontakke.com/2024/05/18/functions-in-c/ https://sanskarsontakke.com/2024/05/18/functions-in-c/#respond Sat, 18 May 2024 07:31:01 +0000 https://sanskarsontakke.com/?p=99 In this tutorial I will explain  you the functions in C. Basics Of Function This is our basic code structure : #include <stdio.h> int main() { /* code */ return 0; } Now if I want to ask a user input for five times and print it back then the code will be as follows ... Read more

The post Functions in C Programming appeared first on SANSKAR'S CODE.

]]>
In this tutorial I will explain  you the functions in C.

Basics Of Function

This is our basic code structure :

#include <stdio.h>

int main()
{
    /* code */
    return 0;
}

Now if I want to ask a user input for five times and print it back then the code will be as follows :

PS C:\C> .\a.exe   
Enter no : 3
You entered 3
Enter no : 53
You entered 53
Enter no : 12 
You entered 12
Enter no : 53 
You entered 53
Enter no : 23
You entered 23
PS C:\C>

Then the code will be :

#include <stdio.h>

int main()
{
    int no;

    printf("Enter no : ");
    scanf("%d", &no);
    printf("You entered %d\n", no);

    printf("Enter no : ");
    scanf("%d", &no);
    printf("You entered %d\n", no);

    printf("Enter no : ");
    scanf("%d", &no);
    printf("You entered %d\n", no);

    printf("Enter no : ");
    scanf("%d", &no);
    printf("You entered %d\n", no);

    printf("Enter no : ");
    scanf("%d", &no);
    printf("You entered %d\n", no);

    return 0;
}

 

But I have an alternative. I will create a function. Here is an example of function :

void get_no()
{
    printf("Enter no : ");
    scanf("%d", &no);
    printf("You entered %d\n\n", no);
}

This code will ask the number and print it back to the user when executed. Now to execute it we will modify the code like this :

#include <stdio.h>

void get_no()
{
    printf("Enter no : ");
    scanf("%d", &no);
    printf("You entered %d\n\n", no);
}

int main()
{
    get_no();
    return 0;
}

In main function we have called/executed out function.

Arguments Of Functions

Functions too take arguments in C. For example I want to print

  1. Enter no 1 :
  2. Enter no 2 :
  3. Enter no 3 :
  4. Enter no 4 :
  5. Enter no 5 :

Then I can modify the code like this :

#include <stdio.h>

void get_no(int no)
{
    printf("Enter no %d : ", no);
    scanf("%d", &no);
    printf("You entered %d\n\n", no);
}

int main()
{
    get_no(1);
    get_no(2);
    get_no(3);
    get_no(4);
    get_no(5);
    return 0;
}

We have entered ‘int no‘ in the two round brackets of declaration of our function.

Now to execute in we need to put the argument. Here i have put 1,2,3,4,5 an the arguments.

The post Functions in C Programming appeared first on SANSKAR'S CODE.

]]>
https://sanskarsontakke.com/2024/05/18/functions-in-c/feed/ 0
Hotel management in C programming. https://sanskarsontakke.com/2024/05/10/hotel-management-in-c-programming/ https://sanskarsontakke.com/2024/05/10/hotel-management-in-c-programming/#comments Fri, 10 May 2024 08:22:01 +0000 https://sanskarsontakke.com/?p=53 This is a tutorial for hotel management in C. This program can be used for managing a hotel or a shop. It helps us to create Bill. I have programmed it in VS Code. It will make an ‘.exe’ file so that it can be executed on any computer. #include <stdio.h> #include <math.h> #include <string.h> ... Read more

The post Hotel management in C programming. appeared first on SANSKAR'S CODE.

]]>
This is a tutorial for hotel management in C.
This program can be used for managing a hotel or a shop.
It helps us to create Bill.
I have programmed it in VS Code.
It will make an ‘.exe’ file so that it can be executed on any computer.

#include <stdio.h>
#include <math.h>
#include <string.h>
#include <time.h>
#include <stdlib.h>

First we will include all the header files.

int choice;
char save_bill_or_not;
int order_no = 0;
int total = 0;
int active = 1;

Here are the variables and their functions.

choice To get the user choice.
save_bill_or_not To save the bill or not.
order_no To get the order no.
total To count the total
active To check if the user exited or not.
struct items_details
{
    char item_name[100];
    float item_price;
    int item_quantity;
};
We will declare a structure of item details which includes :
  • item name
  • item price
  • item quantity
struct order_details
{
    char customer_name[100];
    int no_of_items;
    struct items_details items_details[100];
    int total;
    int net_total;
};

Here we will declare a structure of order details as :

  • customer name
  • no of items
  • total
  • net total (after GST and discount)

We have included a structure inside a structure because each order will contain a number of items and we want their details.

struct order_details order[100];

struct order_details order_read;

Then we will declare them with their variables.

void delay(int number_of_seconds)
{
    int milli_seconds = 300 * number_of_seconds;
    clock_t start_time = clock();
    while (clock() < start_time + milli_seconds)
        ;
}

This code allows us to give a delay using the time library.

void generate_menu()
{
    system("cls");
    printf("1]Generate Bill\n");
    printf("2]Exit\n");
}

Now using this function we will generate a menu.

void generate_bill_head(int no_of_items, char name[100])
{
    printf("====================================BILL====================================\n");
    printf("Bill for :%s \n", name);
    printf("Date : ");
    printf(__DATE__);
    printf("\n");
    printf("----------------------------------------------------------------------------\n");
    printf("Item\t\t\tQuantity\t\tPrice\t\tTotal\n");
    printf("----------------------------------------------------------------------------\n");
}

In this code we will generate the Bill Head. It will have two parameters :

  • no_of_items
  • name (item name)
void generate_bill_body(char item_name[100], float price, int quantity)
{
    printf("%s\t\t\t%d\t\t\t%f\t%f\n", item_name, quantity, price, (quantity * price));
}

We can generate bill body using this function. It has three parameters :

  • item_name
  • price
  • quantity
void generate_bill_foot(float total)
{
    printf("----------------------------------------------------------------------------\n");
    printf("Total\t\t\t\t\t\t\t\t%f\n", total);
    printf("Discount\t\t\t\t\t\t\t%f\n", (total * 10 / 100));
    printf("CGST\t\t\t\t\t\t\t\t%f\n", ((total - (total * 10 / 100)) * 9 / 100));
    printf("SGST\t\t\t\t\t\t\t\t%f\n", ((total - (total * 10 / 100)) * 9 / 100));
    printf("----------------------------------------------------------------------------\n");
    printf("Net Total\t\t\t\t\t\t\t%f\n", ((total - (total * 10 / 100)) + ((total - (total * 10 / 100)) * 18 / 100)));
    printf("----------------------------------------------------------------------------\n");
    printf("Thank you for visiting\n");
    order[order_no].net_total = total;
    order[order_no].net_total = ((total - (total * 10 / 100)) * 9 / 100);
}

In this function we will generate the bill foot. It will contain

  • Total
  • Discount
  • GST
  • Net Total

It has one parameter :

  • total
int main()
{
    while (active)
    {
        generate_menu();
        printf("Enter your choice : ");
        scanf("%d", &choice);
        system("cls");

        switch (choice)
        {
        case 1:
            fgetc(stdin);
            printf("Enter name of customer : ");
            fgets(order[order_no].customer_name, 100, stdin);
            printf("Enter no of items : ");
            scanf("%d", &order[order_no].no_of_items);
            printf("\n");
            for (int i = 0; i < order[order_no].no_of_items; i++)
            {
                fgetc(stdin);

                printf("Enter item no %d name : ", (i + 1));
                fgets(order[order_no].items_details[i].item_name, 100, stdin);
                printf("Enter item no %d price : ", (i + 1));
                scanf("%f", &order[order_no].items_details[i].item_price);
                printf("Enter item no %d quantity : ", (i + 1));
                scanf("%d", &order[order_no].items_details[i].item_quantity);

                printf("\n\n");
                order[order_no].items_details[i].item_name[strlen(order[order_no].items_details[i].item_name) - 1] = '\0';
            }

            printf("Generating Bill");
            for (int i = 0; i < 5; i++)
            {
                delay(1);
                printf(".");
            }
            printf("\n");
            printf("\n");
            generate_bill_head(order[order_no].no_of_items, order[order_no].customer_name);
            printf("\n");

            for (int i = 0; i < order[order_no].no_of_items; i++)
            {
                total = total + (order[order_no].items_details[i].item_price * order[order_no].items_details[i].item_quantity);
                generate_bill_body(order[order_no].items_details[i].item_name, order[order_no].items_details[i].item_price, order[order_no].items_details[i].item_quantity);
            }

            generate_bill_foot(total);
            order[order_no].total = total;
            order[order_no].net_total = ((total - (total * 10 / 100)) * 9 / 100);

            printf("Enter 1 to Finish : ");
            scanf("%d", &choice);

            order_no++;

            break;

        case 2:
            printf("Exit\n");
            active = 0;
            break;
        default:
            printf("Exit\n");
            active = 0;
            break;
        }
    }
}

 

The code written in the main function is as follows:

  • First we will create a while loop with argument ‘active’.
  • Then we will generate the menu and ask the user for its choice.
  • According to user’s choice we will switch using ‘switch’ statement with argument ‘choice’.
  • If user enters ‘1’ them we will create a bill. For that first we will ask for his\her name and number of items.
  • We will use a for loop, in it we will ask for item name, item price, item quantity. The loop will go on till ‘i‘(iterator) is not greater than or equal to no of items.
  • Then we will generate the bill head using ‘generate_bill_head()’.
  • We will run a for loop again and use ‘generate_bill_body()’. The loop will run till ‘i'(iterator) is not greater than or equal to no of items.
  • Then we will generate the bill foot using ‘generate_bill_foot()’.
  • The bill will be generated and displayed on the screen.
  • Then we will ‘Enter 1 to finish’ to finish the bill generation process.  Then we will return back to menu.
  • If the user enters ‘2’ then the program will exit.

The post Hotel management in C programming. appeared first on SANSKAR'S CODE.

]]>
https://sanskarsontakke.com/2024/05/10/hotel-management-in-c-programming/feed/ 1