how to get starting address of a running C program

Answer Posted / chandra sekhar kommuri

void main()
{
clrscr();
int a;
printf("adress of a ::%u",&a);
while(!kbhit());
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

812


write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.

1518


Is null a keyword in c?

737


What does %c mean in c?

652


Here is a good puzzle: how do you write a program which produces its own source code as output?

599






What is the purpose of type declarations?

681


what do you mean by inline function in C?

618


Write a simple code fragment that will check if a number is positive or negative.

708


Explain how do you search data in a data file using random access method?

698


can any one provide me the notes of data structure for ignou cs-62 paper

1706


Write a program to find the biggest number of three numbers in c?

588


write a program to concatenation the string using switch case?

1560


Can a local variable be volatile in c?

576


How can you find the exact size of a data type in c?

601


Is main an identifier in c?

604