Is an array parameter is always "by reference" ?
Answer / sri
yes, passing array to a function is always call by reference
method because array name itself act as a pointer to its
first position.
| Is This Answer Correct ? | 2 Yes | 1 No |
What do mean by network ?
What's wrong with "char *p; *p = malloc(10);"?
which do you prefer C or Pascal?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is memory leak in c?
Why does the call char scanf work?
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(
What's a "sequence point"?
How the c program is executed?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Give me the code of in-order recursive and non-recursive.