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 |
write a program to convert a expression in polish notation (postfix) to inline (normal)
code for replace tabs with equivalent number of blanks
What is the difference between text and binary modes?
What is nested structure in c?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
What is the difference between the local variable and global variable in c?
What is c standard library?
Why doesn't C have nested functions?
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
How do we declare variables in c?
Describe how arrays can be passed to a user defined function
Explain do array subscripts always start with zero?