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

C passes By value or By reference?

Answer Posted / ravi chandra

pass by value means passing values to the function
values means numericals
and pass by reference means passing addresses of the values..
fun(int a ,int b ) //pass by value

fun(int *a,int *b)// pass by reference



pass by reference

fun(int &a,int &b)
{
}
fun(int *c,int *d) // *c=*(&a) ,*d=*(&b)

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is the difference between a string and an array?

1227


Which is the memory area not included in C program? give the reason

1998


Why & is used in scanf in c?

1146


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

1264


Is c# a good language?

1061


write a program to print data of 5 five students with structures?

2089


Explain what is the difference between functions getch() and getche()?

1112


define string ?

1169


Are bit fields portable?

1207


Which function in C can be used to append a string to another string?

1274


Why do we use main function?

1236


What are the back slash character constants or escape sequence charactersavailable in c?

1231


in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none

1156


How many types of sorting are there in c?

1112


What are the complete rules for header file searching?

1132