1 //#include "stdafx.h" 2 #include <iostream> 3 #include <memory.h> 4 5 using namespace std; 6 7 int main(){ 8 int a[10]; 9 memset(a, -1, sizeof(a)); // only can set value 0 or -1 by byte 10 11 printf("%d ", a[0]); // output -1 12 13 system("pause"); 14 return 0; 15 }
参考资料