Total members 11890 |It is currently Fri Apr 19, 2024 6:40 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Passing arrays in C++
cpp code
/*
* Demonstrate some peculiarities of array passing in C.
*
* Author: Tom Bennet
*/
#include <iostream>

using namespace std;

// Each version receives the same size-5 integer array from the main pgm.

// Receive it as declared in main.
void rcvA(int arr[5])
{
cout << "A [" << sizeof arr << "]" << endl;
for(int m = 0; m < 5; m++)
cout << arr[m] << " ";
cout << endl;
}

// Receive it as the system sends it -- a pointer to the first item in the
// array.
void rcvB(int *arr)
{
cout << "B [" << sizeof arr << "]" << endl;
for(int m = 0; m < 5; m++)
cout << arr[m] << " ";
cout << endl;
}

// Since it sends a pointer and ignores the array size anyway, the system
// lets you leave it out here, too.
void rcvC(int arr[])
{
cout << "C [" << sizeof arr << "]" << endl;
for(int m = 0; m < 5; m++)
cout << arr[m] << " ";
cout << endl;
}

// In fact, so long as the system is going to ignore the size anyway, we can
// write what we want. The 1024 doesn't make the array that large,
// however; it's however large its creator made it. rcvD can't find out.
void rcvD(int arr[1024])
{
cout << "D [" << sizeof arr << "]" << endl;
for(int m = 0; m < 5; m++)
cout << arr[m] << " ";
cout << endl;
}

main()
{
// Here's the array all the fuss is about.
int arr[5];

// Put some stuff there.
for(int i = 0; i < 5; ++i)
arr[i] = 2*i -3;

// Do exactly what the functions do.
cout << "M [" << sizeof arr << "]" << endl;
for(int m = 0; m < 5; m++)
cout << arr[m] << " ";
cout << endl;

// Now run the functions.
rcvA(arr);
rcvB(arr);
rcvC(arr);
rcvD(arr);
}


passing arrays to functions in c++ :grin:



_________________
Please recommend my post if you found it helpful


Author:
Beginner
User avatar Posts: 95
Have thanks: 2 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Array Passing
 JSP Passing Arrays to Methods     -  
 Passing a Reference Variable     -  
 Passing an Argument to a Function by Value     -  
 Passing Pointers to function example     -  
 passing string value from java to .exe file     -  
 Passing Enum as Type Parameter to method     -  
 Passing arrays as function parameter in java     -  
 Array difference for associate array     -  
 compare an array with another array?     -  
 C++ array copying     -  



Topic Tags

C++ Arrays
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com