| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <sys/types.h> | |
| int | |
| main(int argc, char** argv) { | |
| short s1 = (argc > 120) ? atoi(argv[1]) : -769; /* 0xf7ff = -769 */ | |
| unsigned short us2 = (unsigned short) s1; /* 0xf7ff = 64767 */ | |
| printf("us2 = %u\n", us2); | |
| return 0; | |
| } |