search
HomeBackend DevelopmentC++C program uses structure to store inventory system
C program uses structure to store inventory systemSep 16, 2023 pm 02:17 PM
c programStructureInventory system

C program uses structure to store inventory system

Structure is a collection of variables of different data types, grouped together by a single name.

Characteristics of structures

The characteristics of structures in C language programming language are as follows-

  • All structural elements of different data types can be combined by using assignment Contents are copied to another structure variable of its type

  • In order to handle complex data types, it is better to create a structure within another structure, which is called a nested structure.

  • You can pass the entire structure, individual elements of the structure, and the address of the structure to the function.
  • Can create structure pointers.

Program

The following is a C programUsing structure to store inventory system -

#include<stdio.h>
#include<conio.h>
void main(){
   struct date{
      int day;
      int month;
      int year;
   };
   struct details{
      char name[20];
      int price;
      int code;
      int qty;
      struct date mfg;
   };
   struct details item[50];
   int n,i;
   printf("Enter number of items:");
   scanf("%d",&n);
   fflush(stdin);
   for(i=0;i<n;i++){
      fflush(stdin);
      printf("Item name:");
      scanf("%s",item[i].name);
      fflush(stdin);
      printf("Item code:");
      scanf("%d",&item[i].code);
      fflush(stdin);
      printf("Quantity:");
      scanf("%d",&item[i].qty);
      fflush(stdin);
      printf("price:");
      scanf("%d",&item[i].price);
      fflush(stdin);
      printf("Manufacturing date(dd-mm-yyyy):");
      scanf("%d-%d-%d",&item[i].mfg.day,&item[i].mfg.month,&item[i].mfg.year);
   }
   printf(" ***** INVENTORY *****</p><p>");
   printf("------------------------------------------------------------------</p><p>");
   printf("S.N.| NAME | CODE | QUANTITY | PRICE |MFG.DATE</p><p>");
   printf("------------------------------------------------------------------</p><p>");
   for(i=0;i<n;i++)
      printf("%d %-15s %-d %-5d %-5d%d/%d/%d</p><p>",i+1,item[i].name,item[i].code,item[i].qty,item[i].price,item[i].mfg.day,item[i].mfg.month,item[i].mfg.year);
   printf("------------------------------------------------------------------</p><p>");
   getch();
}

Output

When the above program is executed, the following results are produced -

Enter number of items:5
Item name:pen
Item code:12
Quantity:50
price:25
Manufacturing date(dd-mm-yyyy):12-02-2020
Item name:pencil
Item code:15
Quantity:100
price:30
Manufacturing date(dd-mm-yyyy):11-03-2020
Item name:book
Item code:34
Quantity:30
price:60
Manufacturing date(dd-mm-yyyy):15-04-2020
Item name:bag
Item code:39
Quantity:20
price:70
Manufacturing date(dd-mm-yyyy):12-03-2021
Item name:sharpner
Item code:33
Quantity:20
price:40
Manufacturing date(dd-mm-yyyy):12-04-2021
***** INVENTORY *****
------------------------------------------------------------------
S.N.| NAME | CODE | QUANTITY | PRICE |MFG.DATE
------------------------------------------------------------------
1    pen    12       50          25    12/2/2020
2   pencil  15       100         30    11/3/2020
3    book   34       30          60    15/4/2020
4    bag    39       20          70    12/3/2021
5  sharpner 33       20          40    12/4/2021

The above is the detailed content of C program uses structure to store inventory system. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
Golang结构体强转:实现原理与技巧详解Golang结构体强转:实现原理与技巧详解Apr 03, 2024 pm 03:09 PM

Golang中结构体强转是将一种结构体类型的值转换为另一种类型。可以通过断言强转、反射强转、指针间接强转等技巧实现。断言强转使用类型断言,反射强转使用反射机制,指针间接强转避免值复制。具体步骤为:1.断言强转:使用typeassertion语法;2.反射强转:使用reflect.Type.AssignableTo和reflect.Value.Convert函数;3.指针间接强转:使用指针解引用。

在C语言中,结构体(Structure)和数组(Array)之间的区别是什么?在C语言中,结构体(Structure)和数组(Array)之间的区别是什么?Aug 30, 2023 pm 09:37 PM

在C中,结构体和数组都用作数据类型的容器,即在结构体和数组中我们都可以存储数据,也可以对它们执行不同的操作。基于内部实现,以下是两者之间存在一些基本差异。Sr.编号键结构数组1定义结构体可以定义为一种数据结构,用作容器,可以容纳不同类型的变量。另一方面,数组是一种用作容器的数据结构,可以容纳相同类型的变量,但不支持多种数据类型变量。2内存分配输入数据的内存分配结构不必位于连续的内存位置。而在数组的情况下,输入数据存储在连续的内存分配中,这意味着数组将数据存储在分配连续内存块的内存模型中(即,具有

使用json.Marshal函数将结构体转换为JSON字符串使用json.Marshal函数将结构体转换为JSON字符串Jul 24, 2023 pm 12:54 PM

使用json.Marshal函数将结构体转换为JSON字符串在Go语言中,可以使用json.Marshal函数将结构体转换为JSON字符串。结构体是一种由多个字段组成的数据类型,而JSON是一种常用的轻量级数据交换格式。将结构体转换为JSON字符串可以方便地在不同系统之间交换数据。下面是一个示例代码:packagemainimport(&q

结构体在PHP中的应用和操作方法结构体在PHP中的应用和操作方法Jul 16, 2023 pm 11:21 PM

结构体在PHP中的应用和操作方法随着PHP语言的不断发展壮大,其功能也日益完善。除了常见的变量和数组,PHP还提供了一种更为灵活的数据类型,即结构体(Struct)。结构体是一种由多个不同类型的数据成员组成的复合数据类型。它可以将相关数据进行组合,形成一个更为完整和有结构的数据。在PHP中,可以通过使用类和对象来模拟结构体的行为和功能。首先,我们来看一下如何

匿名联合体和结构体在C语言中的应用匿名联合体和结构体在C语言中的应用Sep 16, 2023 pm 06:45 PM

这里我们来看看什么是C语言中的匿名联合体和结构体。匿名联合体和结构体就是未命名的联合体和结构体。由于它们没有名称,因此我们无法创建它的直接对象。我们将其用作嵌套结构或联合。这些是匿名联合和结构的示例。struct{&nbsp;&nbsp;datatypevariable;&nbsp;&nbsp;...};union{&nbsp;&nbsp;datatypevariable;&nbsp;&nbsp;...};在这个例子中,我们正在创建

在C语言中编写一个程序,打印出N个五角数的序列在C语言中编写一个程序,打印出N个五角数的序列Aug 25, 2023 pm 02:25 PM

程序说明五维体数是帕斯卡三角形的任意一行中第五个数字,从左到右或从右到左开始,起始于5项行14641。这种数字的前几个是1,5,15,35,70,126,210,330,495,715,1001,1365Pentatopenumbersbelongintheclassoffiguratenumbers,whichcanberepresentedasregular,discretegeometricpatterns.Theformulaforthenthpentatopicnumberis$$\l

使用json.Unmarshal函数将JSON字符串解析为结构体使用json.Unmarshal函数将JSON字符串解析为结构体Jul 25, 2023 pm 10:49 PM

使用json.Unmarshal函数将JSON字符串解析为结构体在Go语言中,可以使用json.Unmarshal函数将JSON字符串解析为结构体。这是一个非常有用的功能,特别是在处理API响应或读取配置文件时。首先,我们需要定义一个结构体类型,来表示我们要解析的JSON对象的结构。假设我们有如下的JSON字符串:{&quot;name&quot;

为什么在C/C++中,结构体的sizeof不等于每个成员的sizeof之和?为什么在C/C++中,结构体的sizeof不等于每个成员的sizeof之和?Aug 26, 2023 am 09:29 AM

sizeof()获取的结构类型元素的大小并不总是等于每个单独成员的大小。有时编译器会添加一些填充以避免对齐问题。所以尺寸可能会改变。当结构成员后面跟着一个尺寸较大的成员或位于结构末尾时,将添加填充。不同的编译器有不同类型的对齐约束。在C标准中,总对齐结构取决于实现。情况1在这种情况下,双精度z为8字节长,大于x(4字节))。因此又添加了4个字节的填充。此外,短类型数据y在内存中具有2字节空间,因此添加了额外的6字节作为填充。示例代码#include<stdio.h>structmyS

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.