指针移动360竟报木马刚写了个简单的指针移动的cpp,一编译360就报木马了,,求大牛解释:
#include<iostream>int main(){ int * pt = new int[2]; pt[0] = 5; pt[1] = 6; pt[2] = 7; *pt++; std::cout<< pt[0] << std::endl; std::cin.get(); delete [] pt; return 0;}