i need this solution using "fgets"
i have a folder(3dsimages) of images.
eg. left0000.png
right0000.png
left0001.png
etc. etc.
i have made a text file(imagelist) list of these images with path:
3dsimages/left0000.png
3dsimages/right0000.png
3dsimages/left0001.png
what is the code required (using "fgets") to read "imagelist" and display these images one after another in C/C++.
another thing is why is "/" frontslash accepted when windows paths are always with a backslash. i'm using Visual C++ express 2010.
Last edited on
how would it be done using "fgets".