Q: Input an integer number. Find and show the COUNT of digits of given number. For example, if given number is 123 then answer will be Count of digits = 3 because 123 consists of 3 digits. C++ Program to count number of digits in a given number The Actual C++ Code of Add Digits of a given number Program /* Program to input a number, then display count of its digits. (c) Www.EasyCppProgramming.Blogspot.Com for Easyway C++ Programs www.ComputerGap.com for perfect computer study notes */ #include #include void main() { int num, temp, count=0, r, q; clrscr(); cout<>num; temp = num; while ( temp>0 ) { q = temp/10; count++; temp = q; } cout<0) becomes false and loop terminates. 11. Therefore display the answer count of digits of number 123 = 3 C++ Program to count number of digits in a given number sample run output /* Program to input a number, then display count of its digits. with comments /documentation (c) Www.EasyCppProgramming.Blogspot.Com */ #include // include header files #include void main() { int num, temp, sum=0, r, q; clrscr(); cout<>num; // input number temp = num; // copy number into temp variable while ( temp>0 ) // loop while temp is greater than zero { q = temp/10; // calculate quotient = temp number / 10, if num is 123 then q=12 count++ ; // starting from 0, increment to count = 1 temp = q; // set next time dividend temp=12 } cout<