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

In a byte, what is the maximum decimal number that you can accommodate?

0 Answers  


What is the purpose of clrscr () printf () and getch ()?

0 Answers  


What are static variables in c?

0 Answers  


Tell me can the size of an array be declared at runtime?

0 Answers  


Explain the difference between #include "..." And #include <...> In c?

0 Answers  






main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail

6 Answers   TCS,


what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }

1 Answers   Motorola,


What is the difference between i++ and i+1 ?(in terms of memory)

3 Answers   HCL,


define c

6 Answers   HCL, TCS,


Where local variables are stored in c?

0 Answers  


How the C program can be compiled?

11 Answers   HP,


What are # preprocessor operator in c?

0 Answers  


Categories