How can I access memory located at a certain address?
Answer Posted / 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 |
Post New Answer View All Answers
What is difference between union and structure in c?
Explain what are binary trees?
Why is c platform dependent?
Why calloc is better than malloc?
write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.
What is a program flowchart and how does it help in writing a program?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
When a c file is executed there are many files that are automatically opened what are they files?
Is there any demerits of using pointer?
Explain the difference between ++u and u++?
What is the use of bit field?
What is difference between stdio h and conio h?
What is a good data structure to use for storing lines of text?
What is the ANSI C Standard?
What is the meaning of c in c language?