Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 local and global variable in c?

1131


Can we use any name in place of argv and argc as command line arguments?

1016


How can I trap or ignore keyboard interrupts like control-c?

1023


What does == mean in texting?

1216


Why pointers are used in c?

948


a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if

1094


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1653


What does 4d mean in c?

1453


Is c procedural or functional?

981


Is c programming hard?

973


When is a void pointer used?

1194


What are two dimensional arrays alternatively called as?

1136


Can a program have two main functions?

1066


What is a volatile keyword in c?

1114


a program that can input number of records and can view it again the record

1867