Answer:here I write code
Step-by-step explanation:
#include <stdio.h>
int main(void) {
char x[]="" ;
int a,b,Flag=0;
gets(x);
b=sizeof(x);
for(a=0; a<b; a++){
if(x[a]=='.')
Flag=1;
if(Flag==1)
printf("%c",x[a]);
}
return 0;
6.6m questions
8.7m answers