Posts by Naty S. • 25 points
3 posts
-
0
votes1
answer104
viewsQ: Use of the getline() function in C with Mingw
I created code for a library collection using Linux/GNU, and it’s working perfectly. However, I need to Compile code on Windows using GCC, and wanted to know if there is a method to use this…
-
1
votes0
answers75
viewsQ: Referencing a specific element of a bidemensional matrix via pointer notation
The C allows treating each row of a matrix of two dimensions considering them as a matrix of one dimension. As we know, one way to reference two-dimensional matrices in the form of C pointers is,…
-
0
votes1
answer704
viewsQ: (C) Make an algorithm that reads a string and removes vowels and whitespace
The code is copying ALL characters from one string to the other and ignoring the copy condition. I know there is an easier way to remove spaces and vowels, which is to bring the next character to…