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 8130917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T08:54:30+00:00 2026-06-06T08:54:30+00:00

I am trying to write header file. I can write simple headers like add(int

  • 0

I am trying to write header file. I can write simple headers like add(int x, y) return x+y; . But when I tried to get more complicated, visual studio gave error. I guess error is related to <fstream>. It always shows

“error C2065: ‘fstream’ : undeclared identifier “.

First line of my cpp file is void get_int(fstream& stream, int offset) (except #include<fstream>) and first definiton of .h file is

#ifndef GET_H
#define GET_H

int get_int(fstream& stream, int offset);

#endif

It goes like this. What is wrong with this code?

  • 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-06-06T08:54:31+00:00Added an answer on June 6, 2026 at 8:54 am

    You must do this:

    #ifndef GET_H
    #define GET_H
    
    #include <fstream>
    
    int get_int(std::fstream& stream, int offset);
    
    #endif
    

    Notice the #include <fstream> and the added std:: prefix. The qualification is needed because all C++ Standard library… things… are defined in that namespace. You should not add a using namespace std; or using std::fstream; in a header, because that pollutes the global namespace and defeats the purpose of the existence of namespace std: people including your header don’t expect stuff to be pulled into the global namespace, which may conflict with naming used by others.

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

Sidebar

Related Questions

I am trying to write a function that includes a file named header.php in
I'm trying to write to an AVI file using AVIStreamWrite but the resulting avi
Okay, this should be simple, but I just can't get it to work. I
i'm trying to write an application to stream videos like SipDroid, but SipDroid only
I am trying to write a .pcap file, which is something that can be
I'm trying to write a framework library which wraps MPI. I have a header
I am trying write a function that generates simulated data but if the simulated
trying to write an regex that can find all patterns p = q=http://.*\.doc in
Trying to write a couple of functions that will encrypt or decrypt a file
Trying to write out syslog entries containing strings but they don't register. // person.name

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.