Answer Posted / oleg
We know that 4096=0x1000, and we just need to add
4100-4096=4 to 0x1000.
So 0x1000 + 4 = 0x1004.
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Is c is a low level language?
What are inbuilt functions in c?
What is the most efficient way to store flag values?
What is array of pointers to string?
Does c have class?
Can one function call another?
Are there constructors in c?
What are unions in c?
c program for searching a student details among 10 student details
What is structure data type in c?
In c programming language, how many parameters can be passed to a function ?
What is wrong with this program statement?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer