Which of the following can have a pointer as an operand?
a) ++
b) *=
c) %
d) /
a) ++
You might also like to view...
Which of the following would be the best function prototype for a function that subtracts the corresponding elements of two arrays:
a) void subtractArray (int a[ ], int b[ ], int c[ ]) b) void subtractArray (const int a[ ],const int b[ ], int c[ ]) c) void subtractArray (const int a[ ],const int b[ ], int c[ ], const int) d) void subtractArray (const int a[ ], const int b[ ],const int c[ ], const int)
The ______ effect can create a feeling of being in a big auditorium.
A. amplify B. envelope C. noise reduction D. normalize E. reverb
Which task does Word NOT give you the ability to accomplish?
A. Perform calculations in a spreadsheet. B. Format text and paragraphs with fonts and colors. C. Copy and move text between documents. D. Add graphics and charts to a document.
How many times will the following loop execute as part of a script: #!/bin/bash COUNTER=0 while [ $COUNTER -lt 7 ] do echo “hello world” done
A. 0 B. 1 C. 7 D. until ctrl-c is used to terminate it