Run ❯
Get your own website
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
#include
#include
int main() { // Allocate memory int *ptr; ptr = calloc(4, sizeof(*ptr)); // Write to the memory *ptr = 2; ptr[1] = 4; ptr[2] = 6; // Read from the memory printf("%d\n", *ptr); printf("%d %d %d", ptr[1], ptr[2], ptr[3]); return 0; }
2
4 6 0