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 |
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
my name is nani i completed my b-tech in hyd now i want go for interveiw but i dont know the process of software field interveiws plz help me anyone how many rouds there n what rounds plz plz plz help me n where i can get these details
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Which header file is essential for using strcmp function?
Why array starts with index 0
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
Can we write a program without main() function?
Explain the differences between public, protected, private and internal.
Can we change the value of #define in c?
How can I find out how much memory is available?
What is string constants?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }