What is call by reference in functions?
The call by reference method of passing arguments to a function copies the address of an argument into the formal parameter. ... It means the changes made to the parameter affect the passed argument. To pass a value by reference, argument pointers are passed to the functions just like any other value.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is alloca() and why is its use discouraged?
code for selection sort?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
Is c is a high level language?
Can we declare variable anywhere in c?
Explain what is the concatenation operator?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is variable in c with example?
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
how should functions be apportioned among source files?