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...

Explain this code.

#include <stdio.h>

void f1(int *k)
{
*k = *k + 10;
}

main ( ){
int i;
i = 0;
printf (" The value of i before call %d \n", i);
f1 (&i);
printf (" The value of i after call %d \n", i);
}

Answer Posted / pooja agarwal

10

Is This Answer Correct ?    11 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is a NULL Pointer? Whether it is same as an uninitialized pointer?

1211


What are the application of void data type in c?

1132


How do you determine the length of a string value that was stored in a variable?

1079


A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

1116


Tell us something about keyword 'auto'.

1010


What is pointer to pointer in c?

1056


What is unsigned int in c?

932


What is the best way of making my program efficient?

961


Why do we need volatile in c?

1117


what is use of malloc and calloc?

1845


Explain how do you determine the length of a string value that was stored in a variable?

1092


What is the explanation for prototype function in c?

922


What is the significance of scope resolution operator?

1346


How can I discover how many arguments a function was actually called with?

1018


Is file a keyword in c?

884