OOP concept in C++ : A restaurant program advance DOCX

Title OOP concept in C++ : A restaurant program advance
Pages 24
File Size 20.3 KB
File Type DOCX
Total Downloads 1
Total Views 38

Summary

Coding done by Shashwata Chowdhury. OOP concept in C++: A restaurant program advance. // Hope that it meets the required expectations. #include <string.h> #include <iostream> #include <windows.h> #include <conio.h> #include <stdio.h> #include <time.h> using namesp...


Description

Coding done by Shashwata Chowdhury. OOP concept in C++: A restaurant program advance. // Hope that it meets the required expectations. #include #include #include #include #include #include using namespace std; void gotoxy(int col,int row); int getkey(); void Coder_specs (); struct burger // Burger Specifications. { int burgertype; int bun; bool salads; int sauce; int cheese; float price; burger *link; }; class orderlist // Class declaration for adding burgers, making choice etc....


Similar Free PDFs