i need to pass a value from a function with alot of stuffs.. to another function with alot of stuffs also.. just a single value... something like below..
void main
{
}
void value()
{
alot of stuff inside here;
}
void passvalue()
{
alot of stuff inside here also ...
i just want to pass a value like... int Number = 5; the value 5 to the function void value() from this function...
}
any1? using pointer?? i not good at it.. can some1 show me the way..
thanks..
void main
{
}
void value()
{
alot of stuff inside here;
}
void passvalue()
{
alot of stuff inside here also ...
i just want to pass a value like... int Number = 5; the value 5 to the function void value() from this function...
}
any1? using pointer?? i not good at it.. can some1 show me the way..
thanks..
Comment