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 diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?

1916


What is mean by data types in c?

1071


What does the error 'Null Pointer Assignment' mean and what causes this error?

1258


What is structure padding and packing in c?

1124


Is it cc or c in a letter?

1077


Explain void pointer?

1096


What are different types of variables in c?

1126


Where does the name "C" come from, anyway?

1214


what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values

1754


Explain how can a program be made to print the line number where an error occurs?

1282


What happens if a header file is included twice?

1076


Define circular linked list.

1082


I need a sort of an approximate strcmp routine?

1078


main() { printf("hello"); fork(); }

1248


Explain union. What are its advantages?

1125