C查询内存大小
Posted daggex
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C查询内存大小相关的知识,希望对你有一定的参考价值。
int GetMemory(void) { MEMORYSTATUSEX statex; statex.dwLength = sizeof (statex); GlobalMemoryStatusEx (&statex); int mem = statex.ullTotalPhys/1024/1024/1000; //printf("%d G",statex.ullTotalPhys/1024/1024/1000);//现实内存大小 return mem; }
以上是关于C查询内存大小的主要内容,如果未能解决你的问题,请参考以下文章