how to get starting address of a running C program

Answer Posted / vivek

we can get by convert prog. into sourse code

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

1024


What is the size of array float a(10)?

933


Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?

853


How many keywords (reserve words) are in c?

843


Explain what are multibyte characters?

894


What are the advantages of c preprocessor?

1018


What is variables in c?

837


What does *p++ do? What does it point to?

843


What are structure members?

856


Is it better to bitshift a value than to multiply by 2?

889


How can I open a file so that other programs can update it at the same time?

938


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

931


What is || operator and how does it function in a program?

889


What are the different types of endless loops?

862


Do pointers need to be initialized?

842