class blueprint1{
private:
    int serialnum;
    int static tracker=0;
public:
    blueprint1(){
        tracker += 1;
    }
    void output(){
        serialnum = tracker;
        cout << "The serial number of object is "<<serialnum<< endl;
    }
};
int main()
{
    blueprint1 one;
    one.output();
    blueprint1 two;
    two.output();
}
It giving me errorError    1   error LNK2001: unresolved external symbol "private: static int blueprint1::tracker" (?tracker@blueprint1@@0HA)
 
     
     
    