網頁文章列表 網頁文章列表
#include <stdio.h>
#include <stdlib.h>
 
int main()
{
    
    unsigned short int s1=-1;                
    short int s2=32768;            
    
    printf("s1=%d\n",s1);   
    printf("s2=%d\n",s2);  
      
    system("pause");
    return 0;
}