Source Code:
Download Code
#include
int main() { int arr[5] = {11,22,33,44,55}; int i; for(i=0;i<5;i++) { printf("%d ",*(arr + i)); } return 0; }
Output Preview :
www.c4learn.com/tutorials/
- Try it yourself