Posts by Samara • 21 points
2 posts
-
0
votes1
answer449
viewsQ: Save data from one vector to another vector in C
I have a code where I am reading character by character within a file and saving them within an array called "input". I am using a comma (the 44 character of the ASCII table) as the stop character,…
-
1
votes1
answer336
viewsQ: How to compare characters from an external file to the ASCII table in C?
I need to make a program in C that reads an external file with characters inside and checks if the character code is between the codes >32 and <126 of the ASCII table. If it is between code 32…