Posts by Thiago Cunha • 1,356 points
108 posts
-
1
votes1
answer341
viewsA: Atom does not find PHP
Now Atom Editor has become the Atom IDE and this incredible thanks to an active Facebook community: the Nuclide. Do it next: Install this package: https://atom.io/packages/atom-ide-ui Now install…
-
1
votes1
answer1616
viewsQ: Circular List Double chained in C/C++
I’m having trouble removing the first and last element of this circular list. // Created by Thiago Cunha on 25/05/2017. // #include "double_linked_list_circular.h" int count = 0; List* init() {…
-
1
votes0
answers136
viewsQ: Wordpress error with apply_filters() in load.php
Guys, I have this mistake: Fatal error: Call to Undefined Function apply_filters() in /var/www/html/lojadec.com.br/web/blog/wp-includes/load.php on line 316. I don’t know what to do!…
-
0
votes0
answers133
viewsQ: Error importing Wordpress database database
I’m having trouble importing the Wordpress database. On my local physical server, with Ubuntu server 16.04 is running, but when I played on my Ubuntu 16.04 desktop, it does not work. The procedures…
-
4
votes1
answer2500
viewsQ: How to take the maximum/minimum value of an integer in the C language
Talk people! Is there a function in the C language that takes the maximum/minimum value of an integer?
-
-1
votes2
answers66
viewsA: List removal
@João Gabriel, your code is a mess, try to organize your navigation menu better, you are repeating without need. void menu() { printf("0 - Fechar \n"); printf("1 - Cadastrar Caminhão \n"); printf("2…
-
1
votes2
answers822
viewsA: How to delete the last line of a text file in C language
I was able to solve the problem by taking the data from a text file to a dynamic allocation. Then I treated the location pointer by writing the data in the same file. void removerUltimoUsuario() {…
-
2
votes2
answers822
viewsQ: How to delete the last line of a text file in C language
Guys, I’m having a question about how I should delete the last line of a file using the C language. Could someone please help me. Below, follow my code. int quantidadeDeUsuarios = 0; Usuario…