write a program to accept and print the count of its digits
Answers
Answered by
2
Answer:
Program
Explanation:
Answered by
3
Answer:
We will create a C program to count the number of digits using functions.
#include <stdio.h>
int main()
{
int num; // variable declaration.
int count=0; // variable declaration.
printf("Enter a number");
scanf("%d",&num);
count=func(num
Similar questions
Social Sciences,
2 months ago
Math,
2 months ago
Computer Science,
4 months ago
English,
10 months ago
Biology,
10 months ago