Posts by Pedro Henrique Faria Teixeira • 71 points
4 posts
-
1
votes2
answers728
viewsQ: How do I get Mysql to accept a 1.457.40 number?
I am developing an application that needs to automatically export excel sheets to the database. I’m using Mysql, but the spreadsheet data is not all well formatted the way the database accepts. I’ve…
-
4
votes1
answer435
viewsQ: Infix function for post-fixed
I’m making a code that converts an infix function to post-fixed notation, for example: 4+2 to 42+. And I’m not being able to prioritize the elements, for example, when I do the expression 4+2*8, I…
-
2
votes1
answer2486
viewsQ: Stack, pop function, it has to remove at the end
#include <stdio.h> #include <stdlib.h> typedef struct pilhaElement{ int data; struct pilhaElement *next; }PilhaElment; typedef struct pilha{ PilhaElment *head; PilhaElment *tail; int…
-
0
votes1
answer29
viewsQ: Progressively Removing from the List
#include <stdio.h> #include <stdlib.h> typedef struct ListElmt_{ int data; struct ListElmt_ *next; } ListElmt; typedef struct List_ { int size; ListElmt *head; ListElmt *tail; } List;…
casked Pedro Henrique Faria Teixeira 71