Sometimes reading about emulation and even developing my own emulators is inevitable not to come across the subject.
Basically there are two types of emulation, the through interpretation or dynamic recompilation, the interpretation basically...
How to limit a value that has been entered / changed by the memory address?
PS: I can not limit the function, this function is just an example function showing the problem, I will need to pass this object to functions of other libraries in wh...
I want to execute a read function from a "material" vector (I created this type with "struct"). The reading will be executed from a file.
std::vector<material> material_read(std::string s)
{
std::ifstream data(s);
dados.exception...
When I run this code in the place where it was to appear the directory appears Ó²o \ formula.exe , could someone help me solve?
#include <iostream>
#include <Windows.h>
#include <lmcons.h>
#include <stdio.h>
#include &...
So this subject seems very controversial but at the same time I do not see a compromise between the developers.
Some say that getters and setters are 100% rule to access any variable within a class. That is, if I have 10 variables, I will...
On windows you have the conio.h library. if I am not mistaken it is possible to use the keyboard arrows on Linux using ncurses.h, but I wanted a more multiplatform solution where the same code would be compiled on several different operating sys...
It is necessary to store in a vector a sequence of numbers, but pressing the ENTER only at the end of the line.
For example:
ENTRADA: 10 20 30 15 50 <ENTER>
Vetor[] = {10, 20, 30, 15, 50}
I'm programming C and I'm learning Java now, but I really enjoyed learning C ++ and I wanted to know if it's possible to create cross platform programs, that is, to run on any OS without having to compile the code in each OS.
What I want to do is open up to check if a process is open, view the thread list, identify it by the Start Address, and end a thread specific to the process. I can do it manually by the processhacker, but I need a script for it.
Itriedtomake...