I need to use the following structures without changing their implementations from a .h file.
typedef unsigned long int chave_t;
typedef unsigned long int conteudo_t;
typedef struct entrada_hash{
chave_t chave;
conteudo_t * con...
I've tried using some tools to get hardware information in DOS, but they did not have source code for free use. I need a code solution that returns me the serial number or ID in the MS-DOS environment.
I'm having trouble reading Bitmap files. The results are not expected.
Size is always the same regardless of which image I open
The height and width do not match the size stated in the image viewer
Color values are not always the...
The problem I'm having is that my serial-inverter pointer gets all null, and the rest of the code works fine, I really do not see what the problem is!
If somebody can help me, I thank you right away! Note: You have a few more libraries to use in...
Well, I need to pass a linked list to a file and have made a function for it but I can not. In addition I have already done several tests and I could not.
#include <stdio.h>
#include <stdlib.h>
typedef struct celulaLista {
int info...
I need to create a standard map chart.
Is it possible to plot graphics using the C language? I know the basics of data structure, algorithms and c language, but I do not know how to create graphical interface, I only use the console windo...
I am using Sublime Text to write the codes and leave them in the workspace
Every time I save a .c file, it generates an executable for Windows. When I save more than one .c code on the desktop and compile, it takes the pl...
How can I implement a struct containing an ID, a priority (medium, low, high, urgent) and a telephone?
basically:
typedef struct Atividades{
int id;
int telefone
char prioridade[20];
}
I would have to write this in a li...
If I do, good wheel:
#include <stdio.h>
int op1;
int main(){
scanf("%d", &op1);
switch(op1) {
case 1:
puts("Hello World");
}
}
I wanted to make when entering a special character, for example, +, -, / (etc), shows m...