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 |
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Give me basis knowledge of c , c++...
how can be easily placed in TCS.
how to build a exercise findig min number of e heap with list imlemented?
In C language what is a 'dangling pointer'?
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
List out few of the applications that make use of Multilinked Structures?
write a program whose output will be- 1 12 123 1234
When would you use a pointer to a function?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
In how much time you will write this c program? Prime nos from 1 to 1000
Magic square