Here is the simple C prog
这是简单的C编程
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
int hex;
memcpy(&hex, argv[1], 4);
printf("hex %x\n", hex);
return 0;
}
#includeHere is the simple C prog
这是简单的C编程
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
int hex;
memcpy(&hex, argv[1], 4);
printf("hex %x\n", hex);
return 0;
}
#include