How can I allocate arrays or structures bigger than 64K?
Answer Posted / sathish kumar
HI All,
In a book i studied that you can use far* to allocate
memory above 64k limit.
Thanks & Regards
Sathish Kumar
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
What are multibyte characters?
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
What is calloc malloc realloc in c?
Explain what is the difference between the expression '++a' and 'a++'?
What are different types of variables in c?
What are the valid places to have keyword “break”?
Ow can I insert or delete a line (or record) in the middle of a file?
What is the difference between #include
What is modifier & how many types of modifiers available in c?
In a switch statement, explain what will happen if a break statement is omitted?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
Explain how do you override a defined macro?
What is the size of enum in c?
Is malloc memset faster than calloc?