Unit test framework for C programs on Linux
I am new to Agile and my apologies if this is a trivial question.
What are the best unit test framework for programs in C?(OS : CentOS)
A bit late perhaps, but Check is an often used framework or else see C++ frameworks like Google Test. You have to do some additional work to cross the bridge between C and C++ but overall Google Tests works perfectly (unit tests in C++ and production code in C).