Click here to Skip to main content
15,893,508 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All


i have a header file in which there are some function like
test.h
classtest1
{
public:
int declare(-----);
int add(-----);
int multiply(----);
};

now in main 
a variable 
void main(){

int array[]={1230,12,89,67};

i pass array as argument in calling of declare(--,array);

return 0;
}

now i want to pass it array variable as argument in other functions like
add and multiply this function is

// class name test3.cpp
#include test.h
int test::add()
{


// here in the coding i am using array variable how to access this variable from main
}

i cant not create array variable as extern(external variable) requirment of code to create in main

Plz Help
Posted

1 solution

Please, read about scope[^] of variables...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900