Complete function incr so its effect mimics the prefix increment of an integer variable: that is, both ++i and incr(&i) would add 1 to i and evaluate to the incremented value.
What will be an ideal response?
```
int
incr(int *argp)
{
[++(*argp);
return(*argp);
]
}
```
Computer Science & Information Technology
You might also like to view...
Presentation slides can contain text, pictures, tables, and multimedia objects
Indicate whether the statement is true or false
Computer Science & Information Technology
The word ____ is used to indicate that a program is permanently held in ROM (read only memory), as opposed to being held in secondary storage.
A. hardware B. firmware C. software D. shareware
Computer Science & Information Technology