Posts by Bernardo Sant'Anna Costa • 58 points
5 posts
-
0
votes1
answer179
viewsA: C code skipping user input
The problem is with scanf(), it reads a float and leaves an empty line in the buffer, so when you use fgets() it reads this empty line. Only to clean the buffer you used fflush(stdin), which is not…
-
1
votes2
answers455
viewsA: Error executing a Flutter command
1) Open the file . bashrc that is in your /home/gabriel_rc 2) Add this line of code last in the file export PATH="$PATH:/home/gabriel_rc/flutter/bin" 3) Save the file changes and restart the…
-
0
votes1
answer103
viewsA: Menu creation in C program
Can ultilizar one do while and switch to call each program you created // Coloque o seu código aqui // Menu int main(){ int continuar=1; do{ printf("\n\tMenu\n\n"); printf("1. Ex1\n"); printf("2.…
canswered Bernardo Sant'Anna Costa 58 -
2
votes1
answer459
viewsA: Flutter Dart consuming a lot of RAM memory during build
I deleted the folders ". dart_tool", "build" and "test". I restarted the PC and now during the build Dart can use at most 500-400MB.…
-
1
votes1
answer459
viewsQ: Flutter Dart consuming a lot of RAM memory during build
I have installed the flutter for web, desktop and android. The problem happens in all platforms that I try to run a project, and it takes a long time to build the project, before it didn’t take that…