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

What is the easiest sorting method to use?

0 Answers  


How do you initialize pointer variables?

0 Answers  


what is the difference between malloc() and calloc() function?

1 Answers  


What is the difference between text files and binary files?

0 Answers  


what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555

0 Answers   Wipro,


9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?

4 Answers   L&T,


Is it possible to create recycle bin in mobiles?

2 Answers  


What is variable and explain rules to declare variable in c?

0 Answers  


How can I ensure that integer arithmetic doesnt overflow?

0 Answers  


What is difference between constant pointer and constant variable?

0 Answers   Hexaware,


How many levels of pointers have?

0 Answers  


code snippet for creating a pyramids triangle ex 1 2 2 3 3 3

4 Answers  


Categories