I am trying to control Dynamixel servos using a GUI made using Qt. Dynamixel provides a C set of C libraries to control the motors, while the only way of making GUI\'s I kno
Yes - C++ can use C libraries.
This is an example that uses libc the main C library
#include int main() { printf("%s\n", "Hello world"); return 0; }