Answer Posted / 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 |
Post New Answer View All Answers
Explain how does free() know explain how much memory to release?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Why we not create function inside function.
How do you generate random numbers in C?
Is c# a good language?
Do you know what are bitwise shift operators in c programming?
swap 2 numbers without using third variable?
What are local static variables?
Is c is a high level language?
What are the loops in c?
What are the various types of control structures in programming?
What is sizeof int in c?
What does nil mean in c?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is #line in c?