How can I access memory located at a certain address?
Answers were Sorted based on User's Feedback
Answer / phani kumar s
using the pointers and address operator
&a where a is the variable
| Is This Answer Correct ? | 6 Yes | 6 No |
Answer / aravind
Access in the sense!Do you mean how can u see the display.if so just use prints("%d",&variable)
| Is This Answer Correct ? | 1 Yes | 1 No |
Can you assign a different address to an array tag?
How can I find the modification date and time of a file?
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
why u join this call center?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
program for comparing 2 strings without strcmp()
Write a c program to print the sizes and ranges of different data types in c?
main() { printf(5+"Vidyarthi Computers"); }
how to add two numbers without using arithmetic operators?
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
Should a function contain a return statement if it does not return a value?