User define function contain thier own address or not.

Answer Posted / guest

yes

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are multidimensional arrays?

652


Is it possible to pass an entire structure to functions?

548


Are the variables argc and argv are always local to main?

567


Can you return null in c?

591


Why do we need functions in c?

551






When should we use pointers in a c program?

620


What header files do I need in order to define the standard library functions I use?

535


Explain enumerated types.

595


how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software

2787


When should volatile modifier be used?

546


What are the types of type specifiers?

616


List the difference between a "copy constructor" and a "assignment operator"?

576


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1855


What is variable initialization and why is it important?

611


write a program in c language to print your bio-data on the screen by using functions.

6239