On that level better take stackoverflow questions. There are about 26k
questions tagged C, 64k questions tagged C++ and 7k tagged both.
The beauty of C is the elegance of its simplicity. It is a very simple
language and can be learned in a day. Yet it allows one to build
complex
programs with optimal performance.
The beauty of C++ on the other hand is its extensive support in the
language itself, its libraries and idioms to address the scalability
issues in large programs. There are solid, well described mechanisms
like user defined types, polymorphism, namespaces, exceptions,
templates, RAII, STL, function overloading, etc, etc, for problems
that can be solved by user code in C. The strength of the C solutions
will vary with the programmer, the C++ equivalents are well defined.
Of course there are more questions about C++ then about C, the C++
language is much larger because it addresses many software
development issues that C doesn't. The investment of learning C++
probably only pays of when you use it in mid to large scale software
projects, that also need its C style performance characteristics. If
you happen to know C++ quite well, it is great for small programs
too
Gert-Jan