how to get starting address of a running C program

Answers were Sorted based on User's Feedback



how to get starting address of a running C program ..

Answer / chandra sekhar kommuri

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

Is This Answer Correct ?    0 Yes 0 No

how to get starting address of a running C program ..

Answer / vivek

we can get by convert prog. into sourse code

Is This Answer Correct ?    0 Yes 0 No

how to get starting address of a running C program ..

Answer / manoj singh

we find out the address of any variable.
void main()
{
clrscr();
int a;
printf("adress of a ::%u",a);
while(!kbhit());
}



i dont understand this question writeway but this is
my vew.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More C Interview Questions

void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }

1 Answers  


difference between malloc and calloc

3 Answers   HCL, Wipro,


What is character constants?

0 Answers  


What is anagram in c?

0 Answers  


What is a stream in c programming?

0 Answers  






illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question

0 Answers  


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

0 Answers  


please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(

1 Answers  


Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?

0 Answers  


What is substring in c?

0 Answers  


process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

0 Answers   InterGraph,


HOW TO SWAP TWO NOS IN ONE STEP?

16 Answers   Satyam,


Categories