How is a two dimensional array passed to function when the
order of matrix is not known at complie time?
Answer / mr.a
jus pass the name of array.....to a function as it was
getting into a pointer....
| Is This Answer Correct ? | 0 Yes | 0 No |
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
How do I get an accurate error status return from system on ms-dos?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is the difference between malloc() and calloc() function in c language?
Why double pointer is used in c?
Can the sizeof operator be used to tell the size of an array passed to a function?
What is structure padding and packing in c?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
how can f be used for both float and double arguments in printf? Are not they different types?
difference between ordinary variable and pointer in C?
what are the general concepts of c and c++
What is omp_num_threads?