amp - C++ Assistor -


is possible specify parameters pointer called & in c/c++?

basically let's have function:

int vba (unsigned long *a, unsigned long *b){.....} 

can declare non-pointer values parameters using mysterious & call? reading book , author using so, doesn't declare is, or in general. googled "&amp c++ call" , didn't results.

so specifies non ptr assignment using in anothe function so:

int vca () {     unsigned long c, d;     vba(&c, &d);    //etc ... } 

this confused, don't know happened here, or call does, how did assign pointer non-pointer ... seems quite awesome though never heard of before. mind elaborating on is, or how possible?

also when put code says in error log: "intellisense: identifier "amp undefined"? got lost because compiler highlights amp call in blue, how undefined?

that html encoding & character. website got got wrong. hm, reread question , noticed you're talking book. doesn't change other make mistake more appalling.

anyway, replace & & , you'll go.


Comments

Popular posts from this blog

c# - SelectList with Dictionary, add values to the Dictionary after it's assigned to SelectList -

how can i manage url using .htaccess in php? -

ios - I get the error Property '...' not found on object of type '...' -