Computer Science, asked by geethanjalis6512, 4 days ago

void main() { int i=0,j=0,c=0; char str[]={"ZohoCorp Pvt Ltd Based on Chennai"); while(str[i]!='\0') { j=i; while((strij]!='')&&(str[j]!='\0')){ j++; } if (str[j]=='')c++; i=j+1; } printf("%d\n",c); }

Answers

Answered by uborse884
4

Answer:

28

Explanation:

you have to do more study

Answered by yashaswi084
1

Answer:28

Explanation:

void main()

{

int i=0,j=0,c=0;

char str[]={"ZohoCorp Pvt Ltd Based on Chennai");

while(str[i]!='\0')

{

j=i;

while((strij]!='')&&(str[j]!='\0')){ j++;

}

if (str[j]==''){

c++;

i=j+1;

}

printf("%d\n",c);

}

Similar questions