#include <stdio.h> int main() { int array1[5] = {10, 20, 30, 40, 50}; int array2[5] = {11, 21, 31, 41, 51}; int R = &array2[3] - &array1[2]; printf("%d\n", R); }
-7
Previous Question Next Question
Your comments will be displayed only after manual approval.