How can I access memory located at a certain address?
Answer Posted / phani kumar s
using the pointers and address operator
&a where a is the variable
Is This Answer Correct ? | 6 Yes | 6 No |
Post New Answer View All Answers
Explain spaghetti programming?
How can I avoid the abort, retry, fail messages?
Why c is called a mid level programming language?
What are 3 types of structures?
What is sizeof c?
Write a program to check armstrong number in c?
Why pointers are used in c?
Why is void main used?
Write a program to print numbers from 1 to 100 without using loop in c?
What is NULL pointer?
Are c and c++ the same?
What is #line used for?
.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; }
What is the use of parallelize in spark?
What is the difference between scanf and fscanf?