The vector name reads names but when I ask to find one entered in another function only the first one passes or I do not know what I have wrong in the for , but I need you to read any data of the vector, not only the first one.
void CON...
I would like to know how it is possible to use the AX , BX , CX and DX records in a code in the language C . if it is necessary to pass them to a variable or directly using "asm" and the registry
I am doing the programming of a stm32f407 that communicates with a raspberry by usart.
stm32 code:
while (1)
{
HAL_UART_Transmit_IT(&huart2, "hola mundo",10 );
HAL_Delay(200);
}
python code in PI:
import serial
ser...
I have a problem reading a file, it does not show me the correct age.
And this the code:
#include <stdio.h>
#include <string.h>
char codigo[3];
char nombre[100];
char edad[2];
void setInfoAlumno(char linea[]){
me...
I need help to know how to use the value of CX in C I have a program which has to draw an x in the place where click with the mouse. And for that I need to know the value of the assembly interruption 33h.
int mouse_x(int x){
asm mov ax,03...
I am trying to insert 2 items (phone number and name), and when entering the phone number I find the name associated with that phone number. What I have currently only inserts the phone number and I do not know how to add the name and what they...
I have to simulate an ATM, where the centos server is made with python and the client in c (windows).
I have ping when I do between the client and the server. Everything is perfect, but when interacting with the other machine, it is never possib...
I have a problem adding and removing items from a stack with linked lists. My push function adds but when I want to pop them out with pop it tells me it's empty. Here is the code:
Push function
BOOLEAN lpila_push(LPila p, void* valor){
/*...
The problem I have is that when I want to save the content in a text file, it does not do it, it simply saves me the garbage of the variables ... then I leave the code:
#include<stdio.h>
#include<time.h>
#include<windows.h>
s...