Posts tagged Computer

get your computer name using c++, windows only

hi all,
you can get your computer name, which use windows operating system by using this code:
/*********/
#include <iostream>
#include <windows.h>
using namespace std;
int main(){
char name[100];
DWORD length=100;
GetComputerName(name, &length);
cout<<name<<endl;
return 0;
}
/*********/

Computer Terminology

Definitions on computer terminology

Interpretation:- Forming high level conclusions or descriptions from collections of raw data.

Prediction :- Projecting probable consequences of given situation

Diagnosis :- Determining the cause of malfaunctions in complex situations based on obeservable symptoms

Design :- Finding a configuration of a system components that meets performance goals while satisfying a set of design constraints

Planning :- [...]