I am doubtful in an issue. The following is the statement:
Implement a library control system with functions to register, query, change, and remove books.
The attributes of a book are:
Name (Book title, with spaces)
Author (Full name...
Hello, I'm doing a college work on Hash table and I'm having some difficulties. I'll try not to complicate too much (to tell you the truth, running my code helps me understand what I want to do).
Basically, I have, for now, a program that gen...
I can not run a program that needs functions to execute a procedure, this function receives a vector of type struct through a pointer. It does not have a compilation error, but the program crashes when it runs and does not work.
How do I use all...
I was creating a list with C and using a struct , after finishing I tried to see what was changing with a nested struct , I created two structs basic, one getting only one value, and other receiving this first and a...
I made a simple code using dynamic allocation. Just ask for the size of the vector, to insert data and print it at the end
I can do dynamic allocation with int , returning vet , but as I'm learning, I'm trying to do a few differen...
I'm following a series of C-videos ( link ), but I've encountered a problem.
First I ran this code:
#include <stdio.h>
int main(void)
{
int x = 10;
int *resultado;
resultado = &x;
printf("Valor &x = %d", resu...