Hello! How are you? I am currently developing software with Qt but I will start with the "Version Controls" since I will be working as a team, but I can not connect directly with Github , what I want is that yes; I am modifying an Ej file:...
The question is why when I do
char *ic( char *p ) {
int largo = strlen( p );
char *retorno = new char[largo]( )
}
Being the length of the char p = 4, I think long return 14
Good afternoon, I have an exercise in which at first I ask for the Name and Certificate of a Person, I store them in a vector and run the program, with other calculations that I do. The case is that in the end develop a menu with several optio...
Good Night, I have the following exercise in which I ask for an answer and there are two options (S / N), S or N (yes or no), the program is great however the validation that only S or No, I can not make it work. If I put any other letter that i...
I have these 3 functions that I use to change the colors of my program:
#include <cstdlib>
void color_correcto()
system ("color 4a");
}
void color_error()
{
system ("color 4e");
}
void color_original()
{
system ("color 4f");
}
They...
I have to insert 4 letters at the beginning of the vector
#include <vector>
#include <list>
using namespace std;
int main(){
int i;
char c='a';
vector <char> caracter(10);
for(i=0;i<10;i++){
caracte...
Buenos Dias, I have the following exercise in which I want to validate the amount "cropa" that is only between 0 and 100, and if you go over these quantities, ask me again without finding any problem with the rest of the calculations .
#includ...
Good evening. Years ago I studied C and I am currently using it but with C ++ to get into classes when it's time. Unfortunately I do not have my notes (of C) and the queries that I have put in google do not satisfy me in addition the tests that...