Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
Re: count digits
// here I am going to write my first coding in semester fall 2012 #include <iostream> using namespace std; int thisisafun(int); void main() { //finding number of digits in a number cout<<"Please enter a valid number having more than one digit\n"; int a; cin>>a; cout<<"the number of digits are "<<thisisafun(a); …
The End.
Shahzad Ahmad