what is the first address that gets stored in stack
according to a C or C++ compiler???? or what will be the
first address that gets stored when we write a C source
code????????
Answer Posted / prasant
The function return address is placed on the stack by the
x86 CALL instruction, which stores the current value of the
EIP register.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What are keywords in c with examples?
What is dynamic dispatch in c++?
Explain how do you view the path?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
How can I dynamically allocate arrays?
What is a constant and types of constants in c?
What is meant by keywords in c?
why programs in c are running with out #include
What are the 4 types of unions?
When is the “void” keyword used in a function?
Do you know the use of 'auto' keyword?
What is the stack in c?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Write a program of prime number using recursion.
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same