User define function contain thier own address or not.
Answer Posted / vignesh1998i
every instruction has it's own address , so only we have got program counters and stack pointers in micro processors, the main use of program counter (computer register) is to point to the next instuction that should be exceuted by the computer from booting till u shut down the system...........
so definetly user define functions and all the functions we have should have a address , that's why , after the operation gets over , it is returning to the main stream..... (using that functional address)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How do shell structures work?
What's the right way to use errno?
What is a structure and why it is used?
What is int main () in c?
Explain null pointer.
What are local variables c?
Compare array data type to pointer data type
Explain what are the advantages and disadvantages of a heap?
What does a function declared as pascal do differently?
When we use void main and int main?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
How will you delete a node in DLL?
What is sizeof return in c?
What is the use of bitwise operator?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?