Posts

Showing posts with the label vegetable

DSPS: Vegetable_vendor

//============================================================================ // Name        : p_queue.cpp // Author      : Parashar // Version     : // Copyright   : Do not try this at home ;P // Description : Hello World in C++, Ansi-style //============================================================================ #include <iostream> #include<string.h> using namespace std; #define size 5 class fruit { public:     char name[10];     int count;     int price; }; class vegetables { public:     char name[10];     int count;     int price; }; class QUEUE {     fruit F[size];     vegetables V[size];     int ffront,frear,vfront,vrear; public:     QUEUE();     void finsert();   ...