Answer Posted / bharat
call by value means u call function with argument as value
of variable.
and
call by reference means u call function with argument as
address of variable
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is difference between class and structure?
What is the difference between strcpy() and memcpy() function in c programming?
Why double pointer is used in c?
What does calloc stand for?
What is page thrashing?
Do variables need to be initialized?
Why c is faster than c++?
What is the maximum no. of arguments that can be given in a command line in C.?
Which of these functions is safer to use : fgets(), gets()? Why?
What is adt in c programming?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Can you write the function prototype, definition and mention the other requirements.
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Write a program to find factorial of a number using recursive function.
what is a function method?give example?