Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to design a C++ program, in Turbo C++ v3.0, which retrieves information about the computer in which it is run.. I want to display OS Ver, CPU clock speed, cpu date and time, RAM info, Hard disk info, etc. Please help me!
Thanks in advance ! :)
Posted
Comments
pasztorpisti 7-Oct-12 16:39pm    
You didn't even mention the platform that is a very important factor. You should use google to find the answer to such a question anyway.
Gangeshwar Krishna Murthy 13-Oct-12 20:49pm    
Platform is Windows(all versions)... Please help me !

Start here[^].
 
Share this answer
 
Comments
Gangeshwar Krishna Murthy 7-Oct-12 12:44pm    
Will this help in C++ ???
[no name] 7-Oct-12 12:47pm    
Had you even bothered to read it, you would have seen your answer, "WMI is designed for programmers who use C/C++"
Richard MacCutchan 7-Oct-12 12:47pm    
Why not go and read it.
Mohibur Rashid 7-Oct-12 22:36pm    
Richard,
Very useful answer. But it wont help OP. The reason is because of the mentioned Compiler, Turbo c++3.0, which does not have any proper library to access win32 APIs

So, adding with you I will suggest op to install express version of Visual C++
Richard MacCutchan 8-Oct-12 3:21am    
Interesting, but how do they write windows programs with it?
use windows.h header
and u can find os version by using GetVersion();
for sytem information:
SYSTEM_INFO SysInfo;
GetSystemInfo(&SysInfo);
for more details refer in MSDN ;
i am suggest for Visual Studio.i am not sure about turbo c++..
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900