Ask your own question, for FREE!
Computer Science 9 Online
OpenStudy (anonymous):

http://ideone.com/DVCmd I've got two functions: one that turns an int array to a string, and another that prints that string. Anyway I can improve my code (make the string as small as possible, print it as fast as possible)?

OpenStudy (anonymous):

Instead of doing enum { LEN = 10 } you can do sizeof(A) / sizeof(int), saves you counting out the elements of the array. Obviously you could make the string smaller by calculating how many digits each number is, but I'm not sure how to do that offhand.

OpenStudy (anonymous):

something like this would be the simplest: int n=num, digits=0; while(n>0) { digits++; n/=10; }

OpenStudy (anonymous):

thanks guys

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!