Computer Science, asked by hasini5365, 4 months ago

write a program to accept and print the count of its digits​

Answers

Answered by bravestone125
2

Answer:

Program

Explanation:

Answered by mariam007
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