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 |
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
How to delete a node from linked list w/o using collectons?
Why C language is a procedural language?
totally how much header files r in c language
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
Process by which one bit pattern in to another by bit wise operation is?
How can you print HELLO WORLD without using "semicolon"?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
What is size of union in c?
State two uses of pointers in C?
write a program that print itself even if the source file is deleted?