Saturday 25 February 2017

InLab 5

InLab 5
#include<string.h>
void item::get(){
    cin>>prod_name>>prod_code>>prod_price>>stock_In_Hand;
}

void store::get_details(){
    cin>>num_Of_Items;
    for(int i=0;i<num_Of_Items;i++)
        items[i].get();
}

void store_keeper::print(){
    cout<<name<<"\n"<<id<<"\n";
}

void store_keeper::stock_mgmt(store &s){
    for(int i=0;i<s.num_Of_Items;i++){
        if(s.items[i].stock_In_Hand<10){  
            strcpy(name,s.items[i].prod_name);
            strcpy(id,s.items[i].prod_code);
            print();
        }
    }
}

Thursday 8 September 2016

HEYA! GUYS


WE ARE AWARE THAT PRACTICE SET 5 HAS COME.
Don't worry about it. Solutions to these problems will be available very soon.


STAY TUNED

Tuesday 6 September 2016

Hi SKILL ROCKERS!

Hi Guys! 

We know what a pain it is to do SkillRack, but you don't need to worry any more because we are here to help you with the codes, flowchart and everything. We will try to upload the solution ASAP.