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

  • Home
  • SEARCH
  • 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 820347
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T02:27:34+00:00 2026-05-15T02:27:34+00:00

My basic problem is that I want to use some structs and functions defined

  • 0

My basic problem is that I want to use some structs and functions defined in a header file by not including that header file in my code.

The header file is generated by a tool. Since I don’t have access to the header file, I can’t include it in my program.

Here’s a simple example of my scenario:

first.h

#ifndef FIRST_H_GUARD
#define FIRST_H_GUARD
typedef struct ComplexS {
   float real;
   float imag;
} Complex;

Complex add(Complex a, Complex b);

// Other structs and functions
#endif

first.c

#include "first.h"

Complex add(Complex a, Complex b) {
   Complex res;
   res.real = a.real + b.real;
   res.imag = a.imag + b.imag;
   return res;
}

my_program.c

// I cannot/do not want to include the first.h header file here
// but I want to use the structs and functions from the first.h
#include <stdio.h>

int main() {
   Complex a; a.real = 3; a.imag = 4;
   Complex b; b.real = 6; b.imag = 2;

   Complex c = add(a, b);
   printf("Result (%4.2f, %4.2f)\n", c.real, c.imag);

   return 0;
}

My intention is to build an object file for my_program and then use the linker to link up the object files into an executable. Is what I want to achieve possible in C?

  • 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-15T02:27:35+00:00Added an answer on May 15, 2026 at 2:27 am

    In order to use the struct in my_program.c, the struct has to be defined in my_program.c. There’s no way around it.

    In order to define it, you have to either include first.h or provide a definition of Complex in my_program.c in some other way (like copy-paste the definition of Complex into my_program.c).

    If your first.h looks as you posted, then there’s no point in doing any copy-pasting, of course, since it is going to be the same thing anyway. Just include your first.h.

    If you don’t want to include first.h because of something else in that header (which you don’t show here), you can move the definition of Complex into a separate small header, and include it instead in both places.

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

Sidebar

Ask A Question

Stats

  • Questions 507k
  • Answers 507k
  • 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 Here's an example using javax.swing.Timer. import java.awt.EventQueue; import java.awt.Font; import… May 16, 2026 at 3:56 pm
  • Editorial Team
    Editorial Team added an answer I think there is no counter plugin of module available… May 16, 2026 at 3:56 pm
  • Editorial Team
    Editorial Team added an answer You can use continue to skip the current iteration of… May 16, 2026 at 3:56 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

Problem The basic problem is I want to debug some 3rd party code to
I'm not really sure how I can explain this, but here goes: I want
I’m in the process of developing pretty basic web application, that is mostly so
i'm supposed to write code which when given a text file (source code) as
I hope the title doesn't sound too subjective; I absolutely do not mean to
I'm having some trouble figuring out how to make the page load architecture of
Disclaimer: I'm very new to Django. I must say that so far I really
I have a ListView with different layouts for different items. Some items are separators.
I've been using ComponentSoftware's CS-RCS Basic for many years now to manage my various
Ok a short question: Is there any SIMPLE software with a GUI, that lets

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.