User define function contain thier own address or not.
Answers were Sorted based on User's Feedback
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 |
Why do we need volatile in c?
What is the concatenation operator?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
Can a function argument have default value?
What is the basic structure of c?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
Is it possible to pass an entire structure to functions?
Software Interview Questions
how will you write a program on linked lists using JAVA programming???????????
Prove or disprove P!=NP.
Explain setjmp()?
The variables are int sum=10,SuM=20; these are same or different?