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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T15:27:10+00:00 2026-05-21T15:27:10+00:00

void volume(int l=10, int w=10, int h=10); int main() { clrscr(); volume(); //equivalent to

  • 0
void volume(int l=10, int w=10, int h=10);  
int main()
{
    clrscr();
    volume(); //equivalent to volume(10,10,10)   
    volume(5); //equivalent to volume(5,10,10)  
    volume(8,6); //equivalent to volume(8,6,10)  
    volume(6,7,8);  
    getch();  
    return 0;  
}  

void volume(int l, int w, int h)  
{  
    cout<<"volume = "<<l*w*h<<endl;  
} 

so now my question is that we are using pass by value then why the value assign when we call the method with empty parameter and the value assignd to the variable got the place. and when we pass other value it does not generate any error.

  • 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-21T15:27:10+00:00Added an answer on May 21, 2026 at 3:27 pm

    Because the language is designed to work like that!

    Or are you asking how the compiler makes it work?
    The standard does not specify how it should work just that it should.

    But potentially one solution would be to generate four methods behind the scenes:

    void volume()
    {
        volume(10, 10, 10);
    }
    void volume(int l)
    {
        volume(l, 10, 10);
    }
    void volume(int l, int w)
    {
        volume(l, w, 10);
    }
    void volume(int l, int w, int h)
    {
        cout<<"volume = "<<l*w*h<<endl;  
    }  
    

    Or the compiler could inject tha parameters at the call site:

    // source
    volume(5);
    // Compiler actually transforms the source (internally) and compiles:
    volume(5, 10, 10);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im trying to make an app that converts distance/area/volume using spinners as a unit
- (void)TargetHit:(int)target{ void (^threadBlock)(void) = ^{ NSLog(@respond to selector %d, [self respondsToSelector:@selector(changeImageOfTarget:)]); [[NSOperationQueue mainQueue]
void foo(Node* p[], int size){ _uint64 arr_of_values[_MAX_THREADS]; for (int i=0 ; i < size
void say(char msg[]) { // using pointer to print out the first char of
void AFCQueue::ExtractValuesSecComplex(int startIndex, int endIndex,int helperIndex) { int size = 0,i,index; TimeType min_timestamp; bool
I'm using Valgrind --tool=drd to check my application that uses Boost::thread. Basically, the application
I am trying to convert a char to an int that's passed to a
I'm trying to unmount a volume in my Cocoa application using the Disk Arbitration
- (void)viewDidLoad{ [super viewDidLoad]; NSString *path = [[NSBundle mainBundle] pathForResource:@VidName ofType:@mov]; NSURL *url =
void test() { unsigned char c; c = (~0)>>1 ; printf(c is %u\n,c); }

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.