Is arr[-2] equivalent to -2[arr]? – stackoverflow.com

#include <iostream> using namespace std; int main() { //code int arr[3] = { 10, 20, 30 }; cout << arr[-2] << endl; cout << -2[arr] << endl; ...

from Hot Questions - Stack Exchange OnStackOverflow
via Blogspot

Share this

Artikel Terkait

0 Comment to "Is arr[-2] equivalent to -2[arr]? – stackoverflow.com"