how to get starting address of a running C program
Answers were Sorted based on User's Feedback
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 |
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 |
What is the easiest sorting method to use?
How do you initialize pointer variables?
what is the difference between malloc() and calloc() function?
What is the difference between text files and binary files?
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
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?
Is it possible to create recycle bin in mobiles?
What is variable and explain rules to declare variable in c?
How can I ensure that integer arithmetic doesnt overflow?
What is difference between constant pointer and constant variable?
How many levels of pointers have?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3