Computer Science, asked by kavitharavi1821978, 11 hours ago

please tell me correct answer I will mark them as brainlist​

Attachments:

Answers

Answered by Ayansh11
0

Answer:

#include <stdio.h>

int main()

{

   char s[1000];

   int c=0,j;

   printf("Enter string: ");

   gets(s);

   for(j = 0; s[j] != '\0'; j++)

   {

       if(s[j]=='0' || s[j]=='1'|| s[j]=='2'||

       s[j]=='3'|| s[j]=='4'|| s[j]=='5'||

       s[j]=='6'|| s[j]=='7'|| s[j]=='8'|| s[j]=='9')

       c++;

   }

   printf("\nNumber of digits in string = %d", c);

   return 0;

}

Similar questions