Content
Programming Alone c a b; Programming While Someone Watches A function that adds two numbers Returns the sum of a and b unsigned int Add (unsigned int a, unsigned int b) unsigned int sum a b; unsigned int carry a b; while (carry ! 0) carry carry 1 a sum: b carry; sum a b; carry a b; return sum;