0

I feel that header files which i include in c++ acts as equivalents of GEMS in ruby but i am not sure.A brief description of gems along the lines of c++ will be helpful

Stefan
  • 109,145
  • 14
  • 143
  • 218
Sainath
  • 45
  • 4

1 Answers1

2

In languages such as Ruby and Java you merely 'require' or similar a package (which is called a gem in Ruby). In C++, you generally need both to #include one or more header files, and also to link with a (dynamic or static) library.