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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T05:39:31+00:00 2026-06-12T05:39:31+00:00

Possible Duplicate: Code convert from C++ to C Converting a C++ class to a

  • 0

Possible Duplicate:
Code convert from C++ to C
Converting a C++ class to a C struct (and beyond)

I used to be a C++ programmer, but now I need to write a program in C.
e.g. in C++

Main.cpp
=====================
int main
{
  ns::Sum sum(1, 2);
}

Sum.h
=====================
namespace ns
{
  class Sum
  {
    public:
    Sum(int a, int b);
    private:
    void AddThemUp();
    int a;
    int b;
  }
}

Sum.cpp
======================
namespace ns
{
  Sum::Sum(int a, int b)
  {
    this->a = a;
    this->b = b;
    AddThemUp();
  }

  void Sum::AddThemUp()
  {
     a + b;//stupid for returning nothing, just for instance
  }
}

That’s in C++
I don’t know how to put above in C. because there is no class there.
if I declare data member a & b in header file, they will become global variables.
I don’t like global variables. and is there namespace in C?
who can help? thank you

  • 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-12T05:39:33+00:00Added an answer on June 12, 2026 at 5:39 am

    Here is a simple conversion from C++ to C. This method allows for stack objects, like how you use ns::Sum. As a note, you should also have a release function that cleans up any memory allocated by the structure.

    // Main.c
    // =====================
    
    // Construction
    ns_Sum sum;
    ns_SumInitWithAAndB(&sum, 1, 2);
    
    // Sum.h
    // =====================
    
    // All member variables are contained within a struct
    typedef struct ns_Sum_
    {
        int a;
        int b;
    } ns_Sum;
    
    // Public Methods
    void ns_SumInitWithAAndB(ns_Sum *sum, int a, int b);
    
    // Sum.c
    // ======================
    
    // Private Methods can be declared as static functions within the .c file
    static void ns_SumAddThemUp(ns_Sum *sum);
    
    void ns_SumInitWithAAndB(ns_Sum *sum, int a, int b)
    {
        sum->a = a;
        sum->b = b;
        ns_SumAddThemUp(sum);
    }
    
    void ns_SumAddThemUp(ns_Sum *sum)
    {
        a + b; //stupid for returning nothing, just for instance
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Convert some code from C++ to C I've got some code that
Possible Duplicate: How to convert from int to string in objective c: example code…
Possible Duplicate: Python code to pick out all possible combinations from a list? I
Possible Duplicate: Protect .NET code from reverse engineering? we just develop a application with
Possible Duplicate: How would you convert from ASCII to Hex by character in C?
Possible Duplicate: How to convert text to unicode code point like \u0054\u0068\u0069\u0073 using php?
Possible Duplicate: Tool to convert java to c# code I have done a project
Possible Duplicate: Converting a four character string to a long I want to convert
Possible Duplicate: converting pixels to dp in android I'm trying to convert pixels to
Possible Duplicate: Byte array in objective-c Am converting some Java code to Objective-C and

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.