Posts by DaProgrammer0101 • 11 points
2 posts
-
0
votes1
answer117
viewsQ: Doubt about reading text files in C
My problem is simple, I created a following file listing some movies: What I want is to literally read what is inside and print on the terminal, I am aware of the existence of functions of reading…
-
0
votes2
answers124
viewsA: Printf does not show all variables
You used the "%f" float formatters instead of the double "lf" formatters in both the scanf and printf. Your string reading is also wrong since it is an array, I would use the gets command to read…