hello sir,is there any function in C that can calculate number
of digits in an int type variable,suppose:int a=123;
3 digits in a.what ll b answer?

Answer Posted / ramesh

int countDigits(number)
{
if (number==0)
return 0;
else
return 1 + countDigits(number%10);

}

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a simple calculator c program to perform addition, subtraction, mul and div.

3148


Develop a routine to reflect an object about an arbitrarily selected plane

2999


What is data _null_? ,Explain with code when u need to use it in data step programming ?

2825


What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?

3716


Write a routine to implement the polymarker function

4382






how to test pierrot divisor

2262


#include int main(void) { int a=4, b=2; a=b<>2 ; printf("%d",a); return 0; }

1071


create a C-code that will display the total fare of a passenger of a taxi if the driver press enter,the timer will stop. Every 10 counts is 2 pesos. Initial value is 25.00

6314


write a program for area of circumference of shapes

2034


how to programme using switch statements and fuctions, a programme that will output two even numbers, two odd numbers and two prime numbers of the users chioce.

2141


How to palindrom string in c language?

8849


Given a spherical surface, write bump-mapping procedure to generate the bumpy surface of an orange

2864


can you use proc sql to manpulate a data set or would u prefer to use proc report ? if so why ? make up an example and explain in detail

2333


could you please send the program code for multiplying sparse matrix in c????

3075


how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns

3121