-
Can we execute any simple program without installing any Operating system?
I think no,can u suggest?
return 0;
}
You notice that I use 3[a] instead of a[3], however, this code works fine but I don't know how.
It will be grateful if someone explians to me why and how this code works fine.
Thanks.">Take this example:#include int main (){ int a [5]; a [3] = 1111; printf ("3[a] = %dn", 3[a]); return 0;}You notice that I use 3[a] instead of a[3], however, this code works fine but I don't know how.It will be grateful if someone explians to me why and how this code works fine.Thanks.
Basic elements of a picture in volume graphics
The basic elements of a picture in volume graphics is 1. pixel 2. volsel 3. voxel 4. either pixel or voxel
Stack pointer
Can anyone give me complete information while performing this situation,A function is running, it has its own stack pointer, memory area now it invokes another function from this point what changes will be in it's memory area and what other changes in data segment, stack segment, heap segment. I want a complete picture of memory architecture?
Ans