Give three uses for the * operator. Name and describe each use.
What will be an ideal response?
Multiplication:```
x * y
```
Pointer definition:```
int *p;
```
Pointer dereferencing:```
int x; x = *p;
```
Pointer parameter declaration:```
void foo( int * p);
```
Computer Science & Information Technology
You might also like to view...
To understand normalization, you first must understand ____ dependency, because it will help you analyze fields within tables and decide if they need to be split into smaller tables.
A. partial B. determinant C. functional D. flexible
Computer Science & Information Technology
Many personal computers feature a local I/O bus that follows the __________ standard and a slower __________ bus.
a. PCI (peripheral component interconnect) b. ISA (industry standard architecture) c. both A and B d. neither A nor B
Computer Science & Information Technology