Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Global integer array with No dimension

Tags:

arrays

c

global

What is the concept when we define a global array with no dimension This shows output as 16.

    #include <stdio.h>
    #include <stdlib.h>
    int arr[];

    int main(int argc, char *argv[])
    {
        arr[1] = 16;

      printf("%d\n",arr[1]);
      system("PAUSE");  
      return 0;
    }

And even sizeof(arr) doesn't work. Why?

like image 657
user1660982 Avatar asked Jun 21 '13 19:06

user1660982


1 Answers

int arr[]; is a tentative definition there.

Clause 6.9.2, paragraph 2 says:

A declaration of an identifier for an object that has file scope without an initializer, and without a storage-class specifier or with the storage-class specifier static, constitutes a tentative definition. If a translation unit contains one or more tentative definitions for an identifier, and the translation unit contains no external definition for that identifier, then the behavior is exactly as if the translation unit contains a file scope declaration of that identifier, with the composite type as of the end of the translation unit, with an initializer equal to 0.

and example 2 in paragraph 5 of that clause clarifies:

If at the end of the translation unit containing

   int i[];

the array i still has incomplete type, the implicit initializer causes it to have one element, which is set to zero on program startup.

So at the end of the translation unit, your array arr has type int[1]. Before the end, its type is incomplete, hence sizeof doesn't work, since in main, the array type is still incomplete.

Accessing arr[1] invokes undefined behaviour, since arr has only one element.

like image 96
Daniel Fischer Avatar answered Sep 30 '22 21:09

Daniel Fischer