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
How can I write a function that takes a format string and a variable number of arguments?
What is the benefit of using an enum rather than a #define constant?
What is difference between constant pointer and constant variable?
Describe newline escape sequence with a sample program?
How can you determine the size of an allocated portion of memory?
Write programs for String Reversal & Palindrome check
What is difference between structure and union in c programming?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Explain the use of 'auto' keyword
What is a volatile keyword in c?
Find MAXIMUM of three distinct integers using a single C statement
Explain what is wrong with this statement? Myname = ?robin?;
What is a nested formula?
Write a program to print factorial of given number without using recursion?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)