how does a general function , that accepts an array as a
parameter, "knows" the size of the array ?
How should it define it parameters list ?
Answer Posted / ganesh bankar
its compilers job to identify what is the size the array
depending upon which array is passed to the function.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Differentiate between new and malloc(), delete and free() ?
What is the meaning of ?
What are the types of c language?
Write a Program to accept different goods with the number, price and date of purchase and display them
What is "Hungarian Notation"?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What are the key features in c programming language?
Why static is used in c?
What is include directive in c?
What does the error 'Null Pointer Assignment' mean and what causes this error?
Explain the concept and use of type void.
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
int far *near * p; means
Write a program to check whether a number is prime or not using c?
Why is c called a mid-level programming language?