|
| byte destuffing by shridatt zambodker | #include<stdio.h>
main()
{
char c[10];
int i;
printf("\n enter the characters");
for(i=0;i<=10;i++)
{
scanf("%c",&c[i]);
}
for(i=0;i<c[10];i++)
{
if(c[i]=='$')
{
printf("@ %c",c[i]);
}
else if(c[i]=='@')
{
printf("@ %c",c[i]);
}
else
printf("%c",c[i]);
}
} | Views 6
Rating 0
Language C
Category Miscellaneous
Compiler CC
OS Any
Last Modified 13th Jan 10 05:04:38 AM
|
|
|
|
|
|