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 |
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
What are the application of c?
What is oops c?
The file stdio.h, what does it contain?
What is a far pointer?What is the utility?
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
What is variable declaration and definition in c?
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
Write programs for String Reversal & Palindrome check
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
write a c program to convert fahrenheit to celsius?