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 "& 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
Post a Comment