Discussion in "General help Guidance and Discussion" started by    mohansaini    Nov 29, 2014.
Sat Nov 29 2014, 03:09 pm
#1
int main()
                 {
                      int arr[0];
                      arr[0]=1;
                        printf("size=%d val=%d\n",sizeof(arr),arr[0]);
                        return 0;
                   }


output is 0,1. why its size is zero if there is no memory allocated then how it can store a value.
Tue Dec 02 2014, 03:13 am
#2


why its size is zero if there is no memory allocated then
how it can store a value.

mohansaini


"int arr[0]; " creates a pointer to an integer, that is, a location in
memory where an integer can be stored.

The complier It does not actually have to allocate any storage.
The statement is suspicious, but not illegal.

"arr[0]=1;" places '1' at that location.
The location physically exists, but very likely is in use for
something else.
 ajay_bhargav like this.

Get Social

Information

Powered by e107 Forum System

Downloads

Comments

Robertgurse
Wed Apr 24 2024, 02:43 pm
Richardedils
Wed Apr 24 2024, 04:07 am
ChrisLub
Tue Apr 23 2024, 05:21 pm
Davidbab
Tue Apr 23 2024, 10:41 am
Richardrit
Tue Apr 23 2024, 09:54 am
HenryLaf
Mon Apr 22 2024, 03:50 pm
bleradrar
Mon Apr 22 2024, 06:38 am
ppu-pro_ka
Sun Apr 21 2024, 07:39 pm