#include <stdio.h> void main() { int array[] = {100, 200, 300, 400, 500}; int *ptr; ptr = array; printf("%d\n", *(ptr+2)+10); //310 출력 }
To embed this project on your website, copy the following code and paste it into your website's HTML: