2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/c/pointer.c

8 lines
119 B
C
Raw Normal View History

2014-03-10 15:39:59 +01:00
#include <stdio.h>
int arr[] = {0,1,2,3,4,5};
int main() {
printf("%i %i", arr[0], (&arr[3])[0]);
return 0;
}