Posts by 01010000 • 43 points
4 posts
-
0
votes1
answer348
viewsQ: Reading txt file in C and data interpretation
I need to read txt files in C and interpret the data from inside the files. The files contain parts in TEXT and others in DECIMAL/INTEGER numbers. What I need to do is read the whole file and pass…
-
-1
votes1
answer3120
viewsQ: SQL database structure of a library
I need to write and populate a Mysql database relative to the control of a library. This involves: 3 tables: | publisher | book | author | The 'publisher' table must have: id, name, city, state,…
-
1
votes2
answers1031
viewsQ: Divide vector according to delimiters and copy content to other strings in C
I need the main string "vector" to be traversed to the delimiter '=' and copy the values before '=' to "second" and the values after '=' to "third". I’m sure there’s a smarter way to do this, but as…
-
2
votes2
answers5533
viewsQ: Return string in C for manipulation outside the function in which it was declared
I must develop a calculator that reads strings in the algebraic form of the complex number operation. I need to manipulate the "main" vector outside the function in which it was declared (receives).…