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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T23:27:22+00:00 2026-06-06T23:27:22+00:00

Today I had an interview there they asked me can we include .c file

  • 0

Today I had an interview there they asked me can we include .c file to a source file?
I said yes. Because few years back I saw the same in some project where they have include .c file. But just now I was trying the same.

abc.c

#include<stdio.h>
void abc()
{ printf("From ABC() \n"); }

main.c

#include<stdio.h>
#include "abc.c"
int main()
{   void abc();
    return 0;
}

Getting an error:

D:\Embedded\...\abc.c :- multiple definition of 'abc'

Where is it going wrong?

I wrote an abc.h file (the body of abc.h is { extern void abc(void); }),
and included the file in abc.c (commenting out #include abc.c). Worked fine.

  • 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-06T23:27:23+00:00Added an answer on June 6, 2026 at 11:27 pm

    Do it as follows:

    abc.c:

    #include <stdio.h>
    void abc()
    {printf("From ABC() \n");}
    

    main.c:

    #include<stdio.h>
    #include "abc.c"
    int main()
    {   
        abc();
        return 0;
    }
    

    (no need for the header file)

    Then, to compile, you’d only compile main.c. Do not attempt to compile both abc.c and main.c, because then you’d have the abc() function defined twice.

    You need to understand that #include is basically “copy-paste”, nothing more. If you tell it #include "abc.c", it will simply take the contents of abc.c, and “paste” them in your main.c file. Therefore, using the above for main.c, after the preprocessor processes it, your main.c will look like this (I’m ignoring the #include <stdio.h>s):

    #include<stdio.h>
    #include <stdio.h>
    void abc()
    {printf("From ABC() \n");}
    int main()
    {   
        abc();
        return 0;
    }
    

    which is a valid program.

    That said you should generally not do this; you should compile all your .c files separately and only then link them together.

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

Sidebar

Related Questions

Today I had an interview on which I asked candidate quite usual and basic
I had an interview today and the person asked me this question: How do
I had an interview today and was asked this question! code the MS Paint
Today I had an interview with a gentleman who asked me to determine how
I had an interview today for a developer position and was asked an interesting
Today I had an interview where I was asked to write a program which
Today I had an interview for a developer job and I had to do
I heard this today during interview for java developer. I had to list some
I had the following problem today, and I was wondering if there is a
I had an interview today and every thing was going very good, but then

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.