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 non linear data structure in c?
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
How can I sort a linked list?
Program to find the absolute value of given integer using Conditional Operators
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
what is the use of keyword volatile??
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
What does volatile do?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
How can I increase the allowable number of simultaneously open files?
Tell us bitwise shift operators?
program to find middle element of linklist?