How can we allocate array or structure bigger than 64kb?
Answers were Sorted based on User's Feedback
Answer / banavathvishnu
change the memory model in complier option to higher Model.
Suppose your memory model is small change it to Huge.
| Is This Answer Correct ? | 2 Yes | 1 No |
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
what is the function of pragma directive in c?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
Why can't I perform arithmetic on a void* pointer?
Write a program to show the workingof auto variable.
Differentiate between full, complete & perfect binary trees.
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
Example of friendly function in c++
what is object oriental programing?
Explain how do you override a defined macro?