Is there a search engine for C++ commands?

I do C++ and R programming since last 3 years.

I wish to know is there a search engine for C++ commands where I can find all the details regarding the command.

This is the example of what I am looking for: This is a search engine for R commands: http://www.rseek.org/

Upvotes: 3

Views: 358

Answers (2)

Chip
Chip

Reputation: 3316

I use this often: http://www.cplusplus.com/. It has a search box.

Upvotes: 2

Ben Voigt
Ben Voigt

Reputation: 283971

Google works pretty well.

If you only want C++ hits, use the site: restriction, as in "site:cppreference.com emplace_back"

Perhaps "site:cppreference.com pow" is a better example, since pow by itself would normally come up with many unrelated hits.

Of course, keyword search works also, try "site:cppreference.com natural logarithm"

Upvotes: 7

Related Questions