Which library do i need to work with all of these ports in order to programming and interfacing using Dev-C++ IDE compiler.
You know, to input and to output data from and to USB, parallel or serial ports.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
¿Could anybody help me with this topic?
Which library do i need to work with all of these ports in order to programming and interfacing using Dev-C++ IDE compiler.
You know, to input and to output data from and to USB, parallel or serial ports.
USB: depends what you want to communicate with; there are multiple standard device classes, and then others that install their own drivers.
Serial: http://msdn.microsoft.com/en-us/library/ms810467.aspx, or simply use stdio or fstream opened on COMn:.
Parallel: Depends what you want to do with it. For driving a printer, use the printer driver, for general IO, use a port I/O device driver.
None of this is Dev-C++ specific.