I think it is the model ET-2. Not quite sure.
What help menu are you talking about?
Idk what is it?
a computer?
plz mark me as brainliest
There’s no cashiers, meaning if you need help you got to figure it out alone.
Answer:
b) void xyzfunc (int &myint);
Explanation:
To use the same memory location as the variable in the calling function we have to pass the variable by reference means passing the same address to the function.So to do that we have use & operator which stands for address.
We will do this as following:-
void xyzfunc (int * myint);
Hence the answer is option b.