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
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
How can you increase the size of a dynamically allocated array?
What is volatile, register definition in C
What is the difference between class and object in c?
What is the difference between a function and a method in c?
What is the difference between ++a and a++?
Can we add pointers together?
What is array of structure in c programming?
What math functions are available for integers? For floating point?
write a program to find the given number is prime or not
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Why is struct padding needed?
What is calloc()?
How can you tell whether two strings are the same?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....