-
I\’m trying to craft a HTTP response using some custom libraries. The library function requires a pointer to an array …
- 55 views
- 1 answers
- 0 votes
-
#include <stdio.h> typedef struct _Text { char *str; int length; int counter; } *Text; Text text(char *txtStr){ Text txt= malloc(sizeof(*txt)); …
- 65 views
- 2 answers
- 0 votes
-
In Apache HTTPD project, I saw the following code const apreq_value_t **a = (const apreq_value_t **)arr->elts; in apreq_join method. arr->elts …
- 65 views
- 0 answers
- 0 votes
-
This question already has answers here: self referential struct definition? (9 answers) Closed 37 mins ago. If I have this: …
- 76 views
- 1 answers
- 0 votes
-
Question as shown on image I have added the switch statement? Can you please inspire me where to place the …
- 80 views
- 0 answers
- 0 votes
-
I am trying to define a struct inside a function and return that struct at the end of the function, …
- 66 views
- 1 answers
- 0 votes
-
I\’m trying to created a linked list of structs for an EFM8 microcontroller project. I want to have the compiler …
- 76 views
- 1 answers
- 0 votes