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
What is file in c language?
What does d mean?
What is the use of a ‘ ’ character?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is a lvalue
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Explain how do you search data in a data file using random access method?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What is the difference between mpi and openmp?
Can you explain the four storage classes in C?
I need previous papers of CSC.......plz help out by posting them.......
How can I automatically locate a programs configuration files in the same directory as the executable?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Write a program to reverse a given number in c?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.