this program is to display a stock containing


 THIS PROGRAM IS TO DISPLAY A STOCK CONTAINING ITEM CODE,ITEM NAME,PRICE AND ANOTHER STOCK WITH CODE & QUANTITY AND DISPLAY COMPLETE INFORMATION

#include
#include
#include
struct stock
  {
  int itemcode;
  char itemname[30];
  float unitprice;
  };

struct stock1
  {
  int itemcode;
  int quantity;
  };

void main()
    {
    clrscr();
    stock s[50];
    stock1 s1;
    float amt;
    int number;
    cout<<"enter the no. of items to be purchased : ";
    cin>>number;
    cout<    for(int i=0;i     {
     cout<<" Item code : ";
     cin>>s[i].itemcode;
     cout<<" Item name : ";
     gets(s[i].itemname);
     cout<<" Unit price of the item : ";
     cin>>s[i].unitprice;
     cout<     }
    cout<<"enter the item code of the item to be purchased : ";
    cin>>s1.itemcode;
    cout<<"enter the total quantity : ";
    cin>>s1.quantity;
    cout<
    for(i=0;i      {
      if (s[i].itemcode == s1.itemcode)
         {
         amt = s[i].unitprice * s1.quantity;
         clrscr();
         cout<<"\t B I L L "<<"\n\n";
         cout<<" item code  : "<         cout<<" item name  : "<         cout<<" unit price : "<         cout<<" quantity   : "<         cout<<"\n";
         cout<<" total amount  : "<         }
      else
        {
        clrscr();
        cout<<" THE ITEM IS NOT AVAILABLE ";
        }
      }
    getch();
    }

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: this program is to display a stock containing
Reference No:- TGS0175259

Expected delivery within 24 Hours