0=false
1=true
false + false = true
0+0=1
+ operator = and function
AND GATE
The first one and last one
Answer:
Following are the statement:
counterPointer = &counter;
Explanation:
The following statement is correct because in the question it is given that there is an integer data type variable i.e., "counter" and there is another integer data type pointer variable i.e., "counterPointer" and finally we write a statement in which the pointer variable points to the integer variable.
A cryptocurrency is a digital asset designed to work as a medium of exchange that uses strong cryptography to secure financial transactions, control the creation of additional units, and verify the transfer of assets.
C++:
int main () {
std::ofstream output {"greeting.txt"};
output << "hey!";
output.close();
return 0;
}