Posts by EDU • 35 points
6 posts
-
0
votes1
answer825
viewsQ: How to implement a generic Mergesort sorting algorithm?
How to implement an sorting algorithm Mergesort generic (with function pointer and pointer void) in that capacity? #include<stdio.h> typedef struct{ inta; intb; }XPTO; void criaVetor(XPTO∗v,…
-
1
votes1
answer113
viewsQ: Syntax errors in C
I’m doing this exercise in C, but I’ve locked into this part of passing parameters with pointer. Basically the program below sums up the share of real numbers and integers. The problem is that the…
-
0
votes1
answer159
viewsQ: How to generate a PDF from a registration folder and then attach the generated file and send it by email?
I need to generate a PDF at the end of filling out a form and then attach it and send it by email. I need a light because I have no idea which tools to use! I thank you for your attention.…
-
0
votes0
answers1349
viewsQ: How to read a . csv file in C?
I created this code in C where I inserted the coordinates of some points and with SVG I drew those points in the space connected by lines. all saved in a. html file to be executed in the browser.…
-
0
votes1
answer931
viewsQ: How to calculate the distance between two points and calculate distance ABC, CAB, BAC? in C
created in class this program that calculates the distance between two points and then gives the option of 3 different paths: ABC, BAC or CAB. I would like tips to optimize my code, ideas on how to…
-
1
votes2
answers2484
viewsQ: How to store contacts from the agenda I created in an array array and list them? C
I’m trying to develop an agenda in C. I would like to know how to store contacts from the agenda I created in an array and list them? I’m also racking my brain when it comes to listing a phone…