Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 811965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T01:07:43+00:00 2026-05-15T01:07:43+00:00

There is a .h file and a .cpp file with the same name but

  • 0

There is a .h file and a .cpp file with the same name but different extension.

If I want to use what’s in the .cpp file, do I include the .h file or the .cpp file?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T01:07:43+00:00Added an answer on May 15, 2026 at 1:07 am

    The simple answer is that you almost always want to include .h files, and compile .cpp files. CPP files are (usually) the true code, and H files are (usually) forward-declarations.

    The longer answer is that you may be able to include either, and it might work for you, but both will give slightly different results.

    What “include” does is basically copy/paste the file in at that line. It doesn’t matter what the extension is, it will include the contents of the file the same way.

    But C++ code is, by convention, usually written this way:

    SomeClass.cpp –

    #include "SomeClass.h"
    #include <iostream>
    
    void SomeClass::SomeFunction()
    {
      std::cout << "Hello world\n";
    }
    

    SomeClass.h –

    class SomeClass
    {
      public:
        void SomeFunction();
    };
    

    If you include either of those, you can use the code from it. However, if you have multiple files that include the same .cpp file, you may get errors about re-definition. Header files (.h files) usually contain only forward declarations, and no implementations, so including them in multiple places won’t give you errors about re-definition.

    If you somehow manage to compile without errors when including .cpp files from other .cpp files, you can still end up with duplicate code. This happens if you include the same .cpp files in multiple other files. It’s like you wrote the function twice. This will make your program bigger on disk, take longer to compile, and run a bit slower.

    The main caveat is that this implementation/forward declaration convention doesn’t hold true for code that uses templates. Template code will still be handed to you as .h files, but it (usually) is implemented directly in the .h file, and won’t have accompanying .cpp files.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 501k
  • Answers 501k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer string s = "27.08.2010"; DateTime dt = DateTime.ParseExact(s, "dd.MM.yyyy", CultureInfo.InvariantCulture);… May 16, 2026 at 2:16 pm
  • Editorial Team
    Editorial Team added an answer The stream extraction operator (>>) performs formatted IO, not binary… May 16, 2026 at 2:16 pm
  • Editorial Team
    Editorial Team added an answer While bundling obviously slows down the initial processing (since you… May 16, 2026 at 2:16 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

In my .vimrc, I set different makeprg according to the source file type as
I understand that a C++ library should use a namespace to avoid name collisions,
Is there a way for GCC to produce a warning while linking libraries that
Somewhat of an academic question, but I ran into this while writing some unit
My Xcode project builds to variations of the same product using two targets. The
I'm writing a straightforward C program on Linux and wish to use an existing
I have a DLL which contains a class with static members . I use
I am trying to compile my first c++ file on windows with the g++
I'm very new to the world of C++ error handling, but I was told
Sorry for what seems like a silly question: But I've never, ever worked with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.