Device Drivers,linux,fedora,kernel programming
// function that returns a 'reference to int' type int& fun() { } // m will default to int type instead of // int& type auto m = fun(); // n will be of int& type because of use of // extra & with auto keyword auto& n = fun();
No comments:
Post a Comment