Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132939 views
License: OTHER
1
#include <stdio.h>
2
3
int arr[] = {0,1,2,3,4,5};
4
5
int main() {
6
printf("%i %i", arr[0], (&arr[3])[0]);
7
return 0;
8
}
9