Others Flashcards
1
Q
What is a cast operator
A
A cast operator is a special type of operator that forces one data type to be converted to another data type.
2
Q
what is the comma operator
A
The comma operator is used to separate two or more expression that are included where only one expression is to be expected
3
Q
What is sizeof operator
A
A compile time operator that determines the size, in bytes of a variable or data type.
4
Q
what is the syntax to manually allocate a memory and delete the allocated memory
A
allocate memory: pointer = new type;
delete memory : delete [] pointer