Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

wap in c to accept a number display the total count of digit

Answer Posted / vaibhav

#include<stdio.h>
#include<conio.h>
void main()
{
int no,t,cnt=0;
clrscr();
printf("\n enter the no.");
scanf("%d",&no);
while(no!=0)
{
t=no%10;
no=no/10;
cnt++;
}
printf("\nTotal count of digit is%d",cnt);
getch();
}

Is This Answer Correct ?    19 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between array and linked list in c?

1156


How does placing some code lines between the comment symbol help in debugging the code?

994


Write a program with dynamically allocation of variable.

1129


How can you convert integers to binary or hexadecimal?

1030


What is array in c with example?

1255


Can we replace the struct function in tree syntax with a union?

1308


write a c program in such a way that if we enter the today date the output should be next day's date.

2192


What is structure in c language?

1173


find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2

1992


What does *p++ do? What does it point to?

1065


What is default value of global variable in c?

992


What are the 32 keywords in c?

1094


I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...

10200


write a progrmm in c language take user interface generate table using for loop?

2050


What is register variable in c language?

1029