Skip to content

Instantly share code, notes, and snippets.

@betseg
Created April 27, 2018 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save betseg/6177ec9806f677e87b7b419557a314b9 to your computer and use it in GitHub Desktop.
Save betseg/6177ec9806f677e87b7b419557a314b9 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
int i = 0;
int arr[10] = { [0 ... 9] = ++i, };
for(int j=0;j<10;j++)
printf("%d ",arr[j]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment