I have the following situation, the user must enter a memory address:
(I'M USING THIS METHOD, IT MAY NOT BE CORRECT FOR THE FOLLOWING SITUATION)
std::string TEMP_MEMORY_ADDRESS;
std::string MEMORY_ADDRESS = "0x";
std::cout << "Digit...
Hello, I would like some help here, more specifically in case 4 if.
I would like some solution without having to sort the vector.
Thankful.
#include <iostream>
#include <cstdlib>
#include <stdio.h>
#include <stdlib.h>
#...
Since I used the function below:
BOOL readyProcessMe = ReadProcessMemory(process, (LPCVOID)memory, &value, 4, 0);
How can I show the correct value in a label?
I'm having trouble copying a simple test using the cURL library for C ++ because it always returns this error:
C:\Users\Raphael\Desktop\HTTP Request\collect2.exe [Error] ld returned 1 exit status
Makefile.win
# Project: SQL Request
...
Hi,
I need to add in a vector<TimedCommand> tCommands; access references for TimedCommand instances, eg:
TimedCommand command1("*.*.*.*.*.*",&sonCommand,"13");
(...)
tCommands.push_back(&command1);
Unfortun...
I need help, I'm having trouble comparing two variables using strcmp ().
[Error] invalid conversion from 'char' to 'const char *' [-fpermissive]
struct transicao{
int estado; //estado em que o DFA esta
char simbolo; //simbol...
I'm a beginner in C ++ (even because the code is basic) and I'm having a problem with an exercise that needs to save the data of 10 people (name, date of birth and height) using structs.
The structs are:
typedef struct
{
char nome[50];...
Good morning, I have the following problem:
I have a class that represents a List, and from it I have created three objects (I do not know what happens) list1 (5), list2 (5), list3 (10).
template<class T>class Lista{
private:...
Square can not be used as a function. Can someone tell me how to fix it?
#include <iostream>
#include <string.h>
#include <sstream>
#include <cmath>
using namespace std;
struct leituras{
float vetor[1000];
int n;
}n...
Does anyone know what is wrong with this algorithm?
Make a program where the user enters N values and stores the first 10 even numbers in a vector named pair. When you reach the tenth even number, close the program and print the vector .......