Posts by Erika • 23 points
3 posts
-
0
votes0
answers7
viewsQ: Is there a Force-Directed Graph term in English?
What do I call this kind of graph representation in English? Or should I use the term in English anyway? with the library D3 the code would be that to create the "Force" var simulation =…
-
2
votes1
answer48
viewsQ: Why does the console even appear using a library to create a window?
I wanted to understand why the console also opens when a program is made using the SDL2 library. I am using codeblocks in windows 10. How do not appear the console and only appear the window…
-
0
votes2
answers117
viewsA: How do I make "while" repeat 4 times only and break to the next C command?
when you put calculation++ means adding 1 to the current value of calculation, ie, calculo=0; calculo++; //calculo passa a valer 1 in the code you showed the incorrect use of ++ ta, it will not…