How to Properly Google for C

cgooglesearch

The problem with trying to use Google to find tutorials or answers for the C programming language is that C is not an expressive enough name to narrow down the searches. Even coupled with keywords like "Programming" and/or "Language" yields results mostly for C++, C#, and Objective-C.

Is there a way to more effectively search for specific C resources using Google?

Best Answer

You can use the + or - signs to add or remove weight for a search term.
However the best place to search really isn't google at all, it's StackOverflow

A few google examples anyway:

  • +C for articles where the letter C stands alone
  • +C -C++ for C articles where there are no references to C++
  • +"C Sharp" for articles with weight added to a grouped term
Related Topic