Posts by Mineiro • 107 points
7 posts
-
-3
votes2
answers91
viewsA: Using a variable as a C file name
Endless loop you can put: while(true){ system("pathping xxx.xxx.xxx.xxx > i.txt"); i++; }
-
0
votes5
answers1879
views -
0
votes3
answers624
viewsA: How to add a scroll bar in Popup with css?
Only use the overflow: auto, that the scroll appears.
-
1
votes2
answers2606
viewsA: How to play an audio in C Language
In addition to those that have already been cited have those that play WAV files with Sdl_mixer: The SDL (Simple Directmedia Layer) Sdl_mixer See more here.…
-
1
votes2
answers126
viewsA: while code does not make the correct condition
The comparison is being made in the wrong way as it always compares with the first. Change your while: while (num1 >= 0) { cin >> num1; if(num1 > maior) { maior = num1; cout <<…
-
1
votes4
answers94
viewsA: What’s wrong with this Javascript code?
The mistake is in the querySelector, you have to use the querySelectorAll, so take all occurrences.
javascriptanswered Mineiro 107 -
2
votes5
answers63261
viewsA: How to clean the console in Python?
As you are Ubuntu Operating System user and want a simple way to do it. You can do so: import os os.system('clear')