What is the output from this program?

#include <stdio.h>

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;
}

Answer Posted / hasan kayman

###1##35 (# sign means space)

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the value of uninitialized variable in c?

571


How to write a multi-statement macro?

621


By using C language input a date into it and if it is right?

571


Which programming language is best for getting job 2020?

605


Describe static function with its usage?

608






Why do we need volatile in c?

742


what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)

1925


which type of aspect you want from the student.

1701


What is exit() function?

559


How to find a missed value, if you want to store 100 values in a 99 sized array?

816


What are c header files?

578


Why c is known as a mother language?

642


how many errors in c explain deply

1629


Describe wild pointers in c?

638


Explain the difference between exit() and _exit() function?

632