Do you want to execute a C appplication from within Qt application or simply call some C functions from Qt code?
You can do the latter without any problems, since C++ is compatible with C. All you need is to wrap C headers in extern "C" block. For the former use QProcess.
Bookmarks