QT C++ with C Library
-
Hi Everyone,
I'm using some C libraries that are unchangeable hardware libraries on QT Desktop project. It works, okay but I want to know the disadvantages of implementation C libraries especially in the long run.
Thank you.
@mekzum said in QT C++ with C Library:
okay but I want to know the disadvantages of implementation C libraries especially in the long run.
why should there be any at all? Actually they do have some advantages ;) (like compiler independent linking)
Since they are unchangeable you have to go with them anyway?
Also note that still many libraries and drivers are still written in C, so C is still pretty alive and still will be many many years. -
@mekzum said in QT C++ with C Library:
okay but I want to know the disadvantages of implementation C libraries especially in the long run.
why should there be any at all? Actually they do have some advantages ;) (like compiler independent linking)
Since they are unchangeable you have to go with them anyway?
Also note that still many libraries and drivers are still written in C, so C is still pretty alive and still will be many many years.@raven-worx
Yes, you are totally right. Viva C
Actually, I asked C with Qt framework. But I got my answer.thank you...