What is the output from this program?
```
#include
void
do_something(int *thisp, int that)
{
int the_other;
the_other = 5;
that = 2 + the_other;
*thisp = the_other * that;
}
int
main(void)
{
int first, second;
first = 1;
second = 2;
do_something(&second, first);
printf("%4d%4d\n", first, second);
return (0);
}
```
a. 35 2
b. 1 35
c. 35 7
d. 1 2
e. 0
b. 1 35
You might also like to view...
What's the difference between the Delay and Reverb effects?
What will be an ideal response?
What is another name for a derived class in the C# programming language?
A. parent class B. second class C. base class D. child class
When saving a file as a PDF or XPS, which check box is available only if you have a PDF reader installed on your computer?
A. Open file after publishing B. Optimize for standard C. Optimize for minimum size D. Publish
When configuring a WAP for a SOHO, which parameter will BEST limit access to the office area?
A. Signal strength B. SSID enable C. Encryption D. Password hardening