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

WilliamErync
Sun May 05 2024, 02:35 am
Danielnof
Sat May 04 2024, 11:12 pm
oriminna
Sat May 04 2024, 08:28 pm
scaneraNom
Sat May 04 2024, 02:21 am
gtaletrzua
Fri May 03 2024, 10:55 am
Clydehet
Wed May 01 2024, 06:44 pm
Davidoried
Wed May 01 2024, 06:11 pm
KevinTab
Sun Apr 28 2024, 05:35 am