system("pause"); #include <stdlib.h>

#include <stdio.h>
#include <stdlib.h>
int main(){
int a=1;
int b=2;
printf("%d ",&a);
printf("%d ",&b);
printf("%x ",&a);
printf("%xs ",&b);
system("pause");
return 0;
}

原文地址:https://www.cnblogs.com/tfy1332/p/3667463.html