Write a code that would add the number of ones in a byte.
Sigiloso
#include unsigned char AddByteOnes(unsigned char byte); int main() { printf("%d\n", AddByteOnes(137)); return 0; } unsigned char AddByteOnes(unsigned char byte) { signed char loopCounter, sum = 0; for(loopCounter = 0; loopCounter > loopCounter; return (sum); }