Posts by Eduardo • 5 points
3 posts
-
0
votes1
answer41
viewsA: Doubt about a String issue (C Language)
Your code has some errors: The scanf() expects to receive a pointer to the variable to be read, as a vector alone is already a pointer &nm1 is not necessary, something like scanf("%s", nm1)…
-
0
votes2
answers1357
viewsQ: Multi threads c#
I would like to create a program to act multiple threads in a process, making it faster, that is, the threads working together to finish the service faster. But each one works individually in the…
-
0
votes1
answer42
viewsQ: Problem leaving form as top c#
I have 2 Forms. The main contains a button that opens the second form inside the main. private void btnCalculadora_Click(object sender, EventArgs e) { Calculadora = new frmCalculadora();…