Posts by Arthur Gomes • 1 point
2 posts
-
0
votes1
answer146
viewsQ: How to install moon in Ubuntu via terminal?
I have tried everything, write apt-get install lua5.1 or lua5.2, it says it is impossible to find package Reading Package Lists... Ready Building a dependency tree Reading status information...…
luaasked Arthur Gomes 1 -
0
votes1
answer176
viewsQ: Binary tree of search
#include <stdio.h> #include <stdlib.h> #include <string.h> struct arvore { int key; struct arvore * right, *left; }; typedef struct arvore Arvore; Arvore * alocar(int key) { Arvore…