Chương trình sau cho kết quả là gì: #include <stdio.h> void main() { int * px, * py; int a[] = { 1, 2, 3, 4, 5, 6 }; px = a; py = & a[5]; printf(“ % d”, ++px - py); };41/50Chương trình sau cho kết quả là gì:#include <stdio.h>void main() {int * px, * py;int a[] = {1,2,3,4,5,6};px = a;py = & a[5];printf(“ % d”, ++px - py);};-425Không có kết quả đúngGiải thíchChọn đáp án A