27 lines
215 B
C++
27 lines
215 B
C++
![]() |
/*
|
||
|
Rafay Ahmad
|
||
|
23I-2526
|
||
|
*/
|
||
|
#include <iostream>
|
||
|
using namespace std;
|
||
|
|
||
|
class InventoryManagement{
|
||
|
int id;
|
||
|
char* name;
|
||
|
float price;
|
||
|
int quantity;
|
||
|
|
||
|
public:
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
};
|
||
|
|
||
|
int main(){
|
||
|
|
||
|
|
||
|
|
||
|
return 0;
|
||
|
}
|