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 |
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
How do I use strcmp?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
What are logical errors and how does it differ from syntax errors?
What is the need of structure in c?
Explain how do you list files in a directory?
What are run-time errors?
User define function contain thier own address or not.
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
Which weighs more, a gram of feathers or a gram of gold?
write a code for large nos multilication (upto 200 digits)