mainmemory : 1 bytes, secondary memory : 5bytes

Tags: , , , ,
Posted in dotnet, vb, vb.net | No Comments »

main memory : 1 bytes , secondary memory : 2000 bytes
I want to define integer ( 4 bytes ) variable in c-program which will make use of required memory(3 bytes ). You may think that i am crazy guy but just try to get my intention.
Is there any way to do such kind of things technically………

Similar:

  1. In a process using lots of memory, how can I spawn a shell without a memory-hungry fork()? On an embedded platform (with no swap partition), I have an application whose main process occupies most of the available physical memory. The problem is...
  2. Is there any problem by accessing memory space without allocation in c language #include<stio.h> main() { int *p,i; p = (int*)malloc(sizeof(int)); printf("Enter:"); scanf("%d",p); for(i=1;i<3;i++) { printf("Enter"); scanf("%d",p+i); } for(i=0;i<3;i++) { printf("No:%dn",*(p+i)); } getch(); return 0; } In this...
  3. How do I detect memory access violation and/or memory race conditions? I have a target platform reporting when memory is read from or written to as well as when locks(think mutex for example) are taken/freed. It...
  4. SQLAlchemy, self-referential secondary table association I’m trying to create a “Product” object in SQLAlchemy and so far I have gotten everything working accept the Product’s “accessories”. What I have is...
  5. Concept of allocating free memory Hello, I would like to know how memory allocation on the lowest levels works. For example if program wants to create some long array or...

Tags: , , , ,

Leave a Reply