answersLogoWhite

0

Call by function in c language?

Updated: 8/19/2019
User Avatar

Wiki User

13y ago

Best Answer

I guess you meant the following:

'In C language, when you call a function,the parameters are passed by-value.'

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Call by function in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a statement in c language programme?

Any experssion including assignment or a function call can be a statement in C


What function that call themselves are called to c programme?

Functions in C language may call themselves (ie can be recursive) without restrictions.


How do you add two numbers with out using operator in c language?

Not possible. Of course you can call a function which does the addition for you, but function-calling is also an operator in C.


What do we mean by Sub-routine calls in C language?

A subroutine is a procedure call. In other words, a function call.


What is the differnce between ordinary function and template function of c language?

The c language does not have template functions. That is a c++ thing.


What are the library function in c language?

libray in c++


What are the hearing rods for identifier 'c' language?

The hearing rods for identifier "c" language is the function.


What is function of brack in c language?

Nothing.


Is combination a library function in c language of programming?

No.


Why Clearscreen in c language is used?

'Clearscreen' is not used in C language. TurboC has a clrscr function (prototype in conio.h).


Why printf is known as call by value?

C language uses only one method for parameter-passing: call by value.


Can you write any c prigramme in c language witthout any function?

No. At minimum, you need to provide a main() function.