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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:42:50+00:00 2026-05-28T14:42:50+00:00

I am doing a procedure and it’s working but I’m not sure if it’ll

  • 0

I am doing a procedure and it’s working but I’m not sure if it’ll work in all cases as it’s not conventional.

void func (int &num){
    num=blah;
}

int main() {
    int num;
    func(num);
}

I know the conventional way of doing this is as below but still I have a lot of code in the previous format I prefer not to change as it works just fine. What I don’t understand is whether I’m just being lucky.

void func (int* num){
    *num=blah;
}

int main() {
    int num;
    func(&num);
}

In fact there is a bit more complicated version of it as well:

void func(float* &list){
    list=new float[3];
}

int main() {
    float *list;
    func(list);
}

which again I understand the conventional way of doing it is as below.

void func(float** list){
    *list=new float[3];
}

int main(){
    float *list;
    func(&list);
}

Your help is much appreciated as I’m in total confusion.

  • 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-28T14:42:51+00:00Added an answer on May 28, 2026 at 2:42 pm

    Your first example is correct – you’re passing an int by reference to func().

    Your second example also fine (now that you’ve edited it). In this case, you’re passing an int * by value to func().

    Your third and fourth examples are also both correct. In the third, you’re passing a float * by reference. In the second case, you’re passing a float ** by value (which is semantically similar to passing a float * by reference, which might be why you’re confusing them).

    There’s nothing “conventional” or “unconventional” about any of your example code. All of it is 100% correct and will work fine. Though there are some subtle semantic differences between passing pointers by value and passing by references, these examples are ok.

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

Sidebar

Related Questions

I was working with quality yesterday doing some formal testing. In their procedure they
I have a procedure I am doing that displays odds but the client wants
I have been doing some research on the correct procedure to follow when working
I'm not talking about doing a SET NOCOUNT OFF. But I have a stored
I have the following stored procedure. It does not seem to work. Is there
thats the way josh smith is doing the add-a-customer-procedure: **CustomerViewModel**.cs: public void Save() {
Is it better to use a stored procedure or doing it the old way
Is it possible to implement batching of multiple stored procedure calls (doing updates/deletes) in
I have a stored procedure which is doing a lot of delete. Hundreds of
Can anyone please point out what im doing wrong with this Stored Procedure please.

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.