#include void main() { unsigned int a,b,c; a=150; b=300; c=a-b; printf("Unsigned C = %u\n",c); printf("Signed C = %i\n",c); }