[Solved] Can we add an array variable to integer?
In expressions an array designator is implicitly converted to the pointer to its first element. Adding an integer to a pointer you will get again a pointer. It is so called the pointer arithmetic. Thus for example if you have an array int a[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, … Read more