mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
8 lines
No EOL
119 B
C
8 lines
No EOL
119 B
C
#include <stdio.h>
|
|
|
|
int arr[] = {0,1,2,3,4,5};
|
|
|
|
int main() {
|
|
printf("%i %i", arr[0], (&arr[3])[0]);
|
|
return 0;
|
|
} |