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 |
What is the difference between strcpy() and memcpy() function in c programming?
What are the types of i/o functions?
What are the different types of linkage exist in c?
What is a const pointer?
Apart from dennis ritchie who the other person who contributed in design of c language.
What is a protocol in c?
char *p="name"; printf(p);
The variables are int sum=10,SuM=20; these are same or different?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
What is a pointer variable in c language?
Program to find the sum of digits of a given number until the sum becomes a single digit
What are different types of pointers?