How can I access a memory located at certain address?
Answer Posted / banavathvishnu
suppose you have address :0x00cc01FF
main()
{
int *ptr = (int *)0x00cc01FF;
}
Using ptr you can access the memory location
Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What are the different types of constants?
What does 2n 4c mean?
How to declare pointer variables?
How do you declare a variable that will hold string values?
Why functions are used in c?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What is c programming structure?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Explain argument and its types.
What is identifier in c?
What is the advantage of an array over individual variables?
what is uses of .net