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 / srikanth karnati

1,35

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are shell structures used for?

1005


What does 2n 4c mean?

1207


An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?

1207


what is the significance of static storage class specifier?

2213


What is break in c?

1007


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

1030


What is a function in c?

1519


What is variables in c?

1014


What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.

2230


An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above

1183


What is dangling pointer in c?

1174


Explain can the sizeof operator be used to tell the size of an array passed to a function?

1036


What does typeof return in c?

1044


Write a program to check prime number in c programming?

1057


Why static is used in c?

1065