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 |
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
What are the rules for the identifier?
What is #line used for?
What is the best style for code layout in c?
Which built-in library function can be used to match a patter from the string?
Where are some collections of useful code fragments and examples?
Where is volatile variable stored?
Difference between constant pointer and pointer to a constant.
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
Toggle nth bit in a given integer - num
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
what is unsigened char and what is the difference from char