Posts by Tercio • 129 points
5 posts
-
0
votes1
answer63
viewsQ: Reading values from a C file
I have a file containing the following values: 10 20 30 40 50 60 For each line, the values must be stored in a vector. How do I get such values from the file, knowing that there is no exact amount…
-
6
votes1
answer11317
viewsQ: Float rounded in C
I need to return a value float with 1 decimal place, but is returning with the rounded value. I have the following code: float n1 = 4; float n2 = 9; float total = n2 / n1 ; printf("Media: %.1f ",…
-
2
votes3
answers665
viewsQ: Register with C File
How to know if there is a Record (struct) saved at any position in a C file ? To the struct: typedef struct Registro { int chave; char caracteres[20]; int idade; int prox; bool contem; } Registro;…
-
0
votes4
answers701
viewsQ: Error in "Git push: fatal: could not read Username" command
After committing a file and giving the "Git push origin master" command, an error happens giving the message: fatal: could not read Username for 'https://github.com': No such file or directory How…
-
4
votes3
answers731
viewsQ: Problem with function call in Cakephp
I have this in the Passage.php model: <?php class Passagem extends AppModel { public $name = 'Passagem'; }?> And this in Passagenscontroller.php: <?php class PassagensController extends…