MAC Address printing

后端 未结 4 648
北海茫月
北海茫月 2021-01-12 10:06

This is a code that gets some info about network the problem is when it prints the MAC address it prints it sometime normally and sometime with fff\'s like 00:21:84:a2:12:88

4条回答
  •  有刺的猬
    2021-01-12 10:24

    Here is a simple C program to find the MAC address of system:

    #include
    #include
    
    int main() {
        system("getmac");
        return 0;
    }
    

提交回复
热议问题