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 the use of header files?
How to avoid buffer overflow?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is the newline escape sequence?
Explain how can I remove the trailing spaces from a string?
What is clrscr in c?
what is the use of a array in c
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
explain memory layout of a C program
Which is better pointer or array?