Breaking

rupe and orice



#include<stdio.h>
#include<conio.h>
#include<string.h>

void main()
{
         clrscr();
         int len;
        char i[10],j,k=0,l;
        printf(" enter a value ");
        scanf("%s",i);
        len=strlen(i);
        printf(" show the value ");
       for(k=0; k<len; k++)
      {
               printf("%c",i[k]);
      }
       printf("rupe= ");
       for(k=0; k<len; k++)
       {
                 if(i[k]!= '.')
                {
                        printf("%c",i[k]);
                }
                else
                {
                       printf("\nprice=");
                       printf(" ");
                }
       }

getch();
}

Simole output:
Enter a value : 20.10
rupe= 22
price= 10