//範例5-7C:指定運算實例 //檔名ch5_7.c #include void main() { int a=45,b=37; a+=b; a-=b; a*=b; a/=b; a%=b; a|=b; a^=b; a<<=b; a>>=b; }