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 happens if header file is included twice?
what is the basis for selection of arrays or pointers as data structure in a program
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
When should a type cast be used?
how many key words availabel in c a) 28 b) 31 c) 32
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
What is meant by global static? why we have to use static variable instead of Global variable
what is the difference between declaration and definition of a variable or function ?
What is the difference between mpi and openmp?
Can a pointer be static?
Explain how do you determine the length of a string value that was stored in a variable?