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 / valli
the return address of function main will be stored in the
stack
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What does p mean in physics?
can we implement multi-threads in c.
code for quick sort?
what is reason of your company position's in india no. 1.
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is stack in c?
Why flag is used in c?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Why are all header files not declared in every c program?
Write a program to find the biggest number of three numbers in c?
What is the difference between text and binary modes?
What are compound statements?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What is the method to save data in stack data structure type?
What is define directive?