21 lines
243 B
C++
21 lines
243 B
C++
![]() |
/*
|
||
|
Rafay Ahmad
|
||
|
23I-2526
|
||
|
*/
|
||
|
#include <iostream>
|
||
|
using namespace std;
|
||
|
|
||
|
class InventoryManagement{
|
||
|
string itemID;
|
||
|
string itemName;
|
||
|
string itemCategory;
|
||
|
int itemQuantity;
|
||
|
double itemPrice;
|
||
|
};
|
||
|
|
||
|
int main(){
|
||
|
|
||
|
|
||
|
|
||
|
return 0;
|
||
|
}
|