C - passing structure + members by value

91 Views Asked by At

my questions here always seem to be about using functions. It still confuses me! In this textbook exercise i am asked to pass a structure by value, then adjust it and pass by reference. Initially I designed the code to have everything done in main. Now I am passing by value. So I added the new function, and I figured I passed the structure correctly but I am getting an error at line void function1(struct Inventory inv){ that tells me parameter 1 (inv) has incomplete type. please help!

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>

void function1(struct Inventory inv);

struct Inventory{
    char name[20];
    int number;
    float price;
    float total;
} 

void main(){

    items;

    void function1(items);

    float total = items.number*items.price;
    printf("Item\tNumber\tPrice\tTotal\tAddress of number\n");
    printf("%s\t%d\t%.2f\t%.2f\t%X\n\n",items.name,items.number,items.price,total,&items.number);

    getch();
}

void function1(struct Inventory inv) {

    printf("Enter the name of the item: ");
    scanf("%s", inv.name);

    printf("Enter the number of items: ");
    scanf("%d", &inv.number);

    printf("Enter the price of each item: ");
    scanf("%f", &inv.price);
}
1

There are 1 best solutions below

0
On

You have to define your struct BEFORE you use it in your function prototype.

struct Inventory{
char name[20];
int number;
float price;
float total;
}items;

void function1(struct Inventory inv);