A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

C program to find Total Amount of purchased Items by Passing Structure as an Argument using User Define Functions
Q:

C program to find Total Amount of purchased Items by Passing Structure as an Argument using User Define Functions

0

 C program to find Total Amount of purchased Items by Passing Structure as an Argument using User Define Functions

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

C program to find Total Amount of purchased Items by Passing Structure as an Argument using User Define Functions

/*  
C program to find Total Amount of purchased Items by Passing Structure
as an argument using User Define Functions.
*/

#include <stdio.h>

/*declaration of structure*/
struct Item {
    char itemName[30];
    int quantity;
    float price, totalAmount;
};

/*function declaration*/
float getTotalAmount(struct Item);

int main()
{
    /*structure variable declaratio*/
    struct Item IT;
    float tAmount; /*total amount*/

    printf("Enter Item Name (max 30 characters): ");
    scanf("%[^\n]s", IT.itemName);
    /*we can also use gets(IT.itemName) - To read complete text untill '\n'*/

    printf("Enter price: ");
    scanf("%f", &IT.price);

    printf("Enter quantity: ");
    scanf("%d", &IT.quantity);

    /*calling function by passing structure Item's variable "IT"*/
    tAmount = getTotalAmount(IT);

    printf("Item Name: %s\nPrice: %f\nQuantity: %d\n", IT.itemName, IT.price, IT.quantity);
    printf("\nTotal Price of all quanities: %f\n", tAmount);
    return 0;
}

/* function definition...
 * Function     :   getTotalAmount
 * Argument(s)  :   struct Item - Item Structure name
 * Return Type  :   float - Total amount
*/
float getTotalAmount(struct Item item)
{
    /* remember Item - Is structure and "item" is structure variable name
     * which is formal here*/

    item.totalAmount = item.price * (float)item.quantity;

    return (item.totalAmount);
}

Output:

    Enter Item Name (max 30 characters): Pen
    Enter price: 12.50
    Enter quantity: 11
    Item Name: Pen
    Price: 12.500000
    Quantity: 11

    Total Price of all quanities: 137.500000

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now