美文网首页
打印计算机名称

打印计算机名称

作者: louyang | 来源:发表于2019-03-30 23:32 被阅读0次

    https://docs.microsoft.com/en-us/windows/desktop/api/winbase/nf-winbase-getcomputernamea
    先在这里找到相应的Windows API。

    建立一个空项目,参考这里:
    https://www.jianshu.com/p/36658d3ca63f

    #include <stdio.h>
    #include <windows.h>
    
    int main()
    {
        DWORD size = 128;
        char buf[129];
        if (GetComputerName(buf, &size)) {
            printf("%s\n", buf);
        }
        else {
            printf("failed\n");
        }
    }
    

    F5运行:

    image.png

    打开控制面板,在system选项中,也可以看到同样计算机名。


    image.png
    参考

    http://zetcode.com/gui/winapi/system/

    相关文章

      网友评论

          本文标题:打印计算机名称

          本文链接:https://www.haomeiwen.com/subject/yebsbqtx.html