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????????
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / valli
the return address of function main will be stored in the
stack
| Is This Answer Correct ? | 8 Yes | 0 No |
why u join this call center?
Can the “if” function be used in comparing strings?
hi how to convert program from notepad to turboc editor can u please help me
How will you allocate memory to a double pointer ?
What do you know about the use of bit field?
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
How do you write a program which produces its own source code as its output?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
What is an array in c?
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above