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

Clydehet
Wed May 01 2024, 06:44 pm
Davidoried
Wed May 01 2024, 06:11 pm
KevinTab
Sun Apr 28 2024, 05:35 am
Tumergix
Sun Apr 28 2024, 12:59 am
StevenDrulk
Sat Apr 27 2024, 08:47 pm
StephenHauct
Sat Apr 27 2024, 09:38 am
Adamsaf
Sat Apr 27 2024, 07:12 am
Robertphype
Sat Apr 27 2024, 12:23 am