I am a teaching assistant for a C programming course, and I came across the following line of C code:
char str[] = \"My cat\'s name is Wiggles.\"; printf(\"%
Example Code.
#include int main(){ int arr[] = {1, 2, 3}; for(int i = 0; i <= 2; i++){ printf("%d\t", i[arr]); } return 0; }
Output:1 2 3