GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Tech FAQs  >  OOPS
Go To First  |  Previous Question  |  Next Question 
 OOPS  |  Question 11 of 258    Print  
How can I allocate arrays or structures bigger than 64K?

  
Total Answers and Comments: 1 Last Update: September 21, 2005   
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
September 21, 2005 03:15:41   #1  
yogeshpanda Member Since: September 2005   Contribution: 50    

RE: How can I allocate arrays or structures bigger th...
By useing the far * .
 
Is this answer useful? Yes | No

 Related Questions

Latest Answer : By useing the "far *". ...

What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?

Latest Answer : Strcture : It is collection of data (Data Types) which can be different in nature             e.g. Student{                      ...

Latest Answer : The size of the array must be predefined whereas the size of the linklist is defined at the runtime, ...

Latest Answer : Strings always ends with a NULL (\0) character but not array ...

Latest Answer : Use fread() and fwrite() ...


Latest Answer : The largest possible memory block malloc can allocate depends on the host system, particularly the size of physical memory and the operating system implementation. Theoretically, the largest number should be the maximum value that can be held in a size_t ...

Latest Answer : int *ptr = malloc(10 * sizeof (int)); if (ptr == NULL) { /* Memory could not be allocated, the program should handle the error here as appropriate. */ realloc It is often useful to be able to grow or shrink a block of memory. This can be done using ...



 Sponsored Links

 
Related Articles

Microsoft AJAX Library - Associative Arrays

Thinking of Objects as Associative Arrays A key element in understanding JavaScript objects is understanding the notion of associative arrays which are nothing more than collections of key value pairs As a NET developer you have worked with associative arrays represented by classes such as NameValue
 

OOPS Tutorials

Object oriented programming OOP is a computer science term used to characterize a programming language that began development in the 1960’ s The term object oriented programming’ was originally coined by Xerox PARC to designate a computer application that describes the methodol
 

C++ Multidimensional Arrays

C Multidimensional Arrays In this C tutorial you will learn about Multidimensional arrays what is Multidimensional array how is Multidimensional arrays represented in C how to access the elements in the Multidimensional array mosgoogle center What is a Multidimensional Array A Multidimensional arra
 

JavaScript Iterative Structures - Part II

JavaScript Iterative Structures Part II In this JavaScript tutorial you will learn about JavaScript Iterative Structures while loop and do while loop explained along with syntax and examples mosgoogle center while loop This looping structure is used when a programmer wants the block of code to exec
 

JavaScript Iterative Structures - Part I

JavaScript Iterative Structures Part I In this JavaScript tutorial you will learn about JavaScript Iterative Structures for loop for in statement break and continue explained along with syntax and examples mosgoogle center Iterative Structures are used to execute a certain piece of code a specified
 

JavaScript Two Dimensional Arrays

JavaScript Two Dimensional Arrays In this JavaScript tutorial you will learn about two dimensional arrays  how to define and access two dimensional array in JavaScript mosgoogle center Two Dimensional Arrays in JavaScript Two Dimensional Arrays are storing elements in a structure similar
 

JavaScript Arrays

JavaScript Arrays In this JavaScript tutorial you will learn about JavaScript Array different ways of defining an array in JavaScript viz traditional way shorter form literal array accessing the elements in an array and editing the values or elements in an array mosgoogle center The array concept is
 

PHP Tutorials - Arrays (Part 2)

PHP Tutorials Arrays Part 2 In this PHP Tutorial you will learn  Arrays Part 2 Looping with foreach Sorting arrays and Using Multidimensional Arrays mosgoogle Looping with foreach The easiest way to iterate through each element of an array is with foreach The foreach construct lets you
 

PHP Tutorials : Arrays

PHP Tutorials Arrays In this PHP Tutorial you will learn about Array basics Creating an array Creating a numeric array and Finding the Size of an Array mosgoogle Array basics An array is made up of elements Each element has a key and a value An array holding information about the GPAs of a student h
 

The Inheritance Concept In OOPs

The Inheritance Concept In OOPs In object oriented programming objects will be characterised by classes It is possible to learn a lot about an object based on the class it belongs to Even if you are not familiar with the name Maybach If I told you it is a car you would immediately know that it has f
 

About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape