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
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What are the keywords in c?
What is console in c language?
What is use of null pointer in c?
The __________ attribute is used to announce variables based on definitions of columns in a table?
Explain what is the benefit of using const for declaring constants?
How can I open a file so that other programs can update it at the same time?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
Explain the binary height balanced tree?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Can a pointer be volatile in c?
What is the benefit of using const for declaring constants?
How do we make a global variable accessible across files? Explain the extern keyword?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is null pointer constant?