To Write a C program to remove the repeated characters in
the entered expression or in entered characters(i.e)
removing duplicates.

Answers were Sorted based on User's Feedback



To Write a C program to remove the repeated characters in the entered expression or in entered cha..

Answer / adarsh

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

main()
{
char a[100],b[100]={0};
printf("Enter the string\n");
scanf("%s",a);
int f=strlen(a);
int i,j,k=0,count=0;
for(i=0;i<f;i++)
{
for(j=0;j<i;j++)
{
if(a[i]==b[j])
{
count=1;
}
}
if(count==0)
{
b[k++]=a[i];

}
count=0;
}

for(j=0;j<strlen(b);j++)
{
printf("%c",b[j]);
}
}

Is This Answer Correct ?    154 Yes 89 No

To Write a C program to remove the repeated characters in the entered expression or in entered cha..

Answer / ashish

#include<stdio.h>
#include<string.h>
void main()
{
int tail=1;
char str[200];
int d=0,i;
clrscr();
printf("\nenter the string:");
scanf("%s",&str);
d=strlen(str);
for(i=1;i<d;++i)
{
int j;
for(j=0;j<tail;++j)
{
if(str[i]==str[j])
break;
}

if(j==tail)
{
str[tail]=str[i];
++tail;
}
}
str[tail]=0;

printf("the string is:%s",str);
getch();
}

Is This Answer Correct ?    30 Yes 16 No

To Write a C program to remove the repeated characters in the entered expression or in entered cha..

Answer / tls

int remove_duplicates(char *str)
{
int char_check=0;
int i,j;
char ch;

if(str == NULL)
return 0;

/* check from 1st character in the string */
while(str[char_check]) {

ch = str[char_check];

i = j = char_check + 1;

/* logic to remove the repeated character */
while(str[i]) {
if(str[i] != ch) {
str[j] = str[i];
j++;
}
i++;
}
str[j]='\0';

char_check++;
}
printf("String after removing duplicates : %s\n",str);
return 1;
}

Is This Answer Correct ?    63 Yes 52 No

To Write a C program to remove the repeated characters in the entered expression or in entered cha..

Answer / srikanth

#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char *input_str,*output_str;
int str_len,i,j,duplicate_count;
clrscr();
printf("\n Enter your String : ");
scanf("%s",input_str);
str_len=strlen(input_str);
output_str[0]=input_str[0];
output_str[1]='\0';
for(i=1;i<str_len;i++)
{
duplicate_count=0;
for(j=0;output_str[j]!='\0';j++)
{
if(output_str[j]==input_str[i])
{
duplicate_count=1;
}

}
if(duplicate_count==0)
{
output_str[j]=input_str[i];
output_str[j+1]='\0';
}

}
printf("The Resultent out put string is : %s",output_str);
getch();
}

Is This Answer Correct ?    21 Yes 15 No

To Write a C program to remove the repeated characters in the entered expression or in entered cha..

Answer / munesh sharma

char* removeDuplicate(char str[])//remove duplicate characters from a string,so that each character in a string is not repeating
{
int i = 0,j;
char ch;
printf("\nstr is %s",str);
while((ch = str[i++] )!= '\0')
{
j = i;
printf("\n----ch = %c----",ch);
while(str[j] != '\0')
{
printf("\n--------Checking whether %c = %c \n",str[j],ch);
if(ch == str[j])
{
printf("\n------------Yes");
while(str[j]!='\0')
{
printf("\nRemoving %c %d -- \n",str[j]);
str[j] = str[++j];
--i;

}

break;
}
printf("\n------------No");

//printf("\njj");
j++;
}
}

return str;
}

Is This Answer Correct ?    6 Yes 0 No

To Write a C program to remove the repeated characters in the entered expression or in entered cha..

Answer / utsav kumar

#include<stdio.h>
main()
{
char s[50];
int i=0,j;
printf("enter character string:");
while((s[i]=getchar())!='\n')
{
for(j=0;j<i;j++)
if(s[j]==s[i])
i--;
i++;
}
printf("after removing the duplicates the string is:");
for(j=0;j<i;j++)
printf("%c",s[j]);
}

Is This Answer Correct ?    17 Yes 11 No

To Write a C program to remove the repeated characters in the entered expression or in entered cha..

Answer / anbu

/Made few corrections...

int remove_duplicates(char *str)
{
int char_check=0;
int i,j;
char ch;

char filterstr[256]; // new

if(str == NULL)
return 0;

/* check from 1st character in the string */
while(str[char_check]) {

ch = str[char_check];

i = j = char_check+1;

filterstr[0] = str[0]; // added

/* logic to remove the repeated character */
while(str[i]) {
if(str[i] != ch) {
filterstr[j] = str[i]; //modifid
j++;
}
i++;
}
filterstr[j]='\0'; //modified

str = filterstr; //added

char_check++;
}
printf("String after removing duplicates : %
s\n",filterstr);
return 1;
}

Is This Answer Correct ?    13 Yes 9 No

To Write a C program to remove the repeated characters in the entered expression or in entered cha..

Answer / mbm

char *remove_duplicates(char *str)
{
char *str1, *str2;

if(!str)
return str;

str1 = str2 = str;

while(*str2)
{
if(strchr(str, *str2)<str2)
{
str2++;
continue;
}

*str1++ = *str2++;
}
*str1 = '\0';

return str;
}

Is This Answer Correct ?    15 Yes 12 No

To Write a C program to remove the repeated characters in the entered expression or in entered cha..

Answer / migf1

char *s_stripdups( char *s )
{
register char *cp1 = NULL; /* for parsing the whole s */
register char *cp2 = NULL; /* for keeping desired *cp1's */
int used[256] = {0}; /* ascii boolean map, for used chars */

/* sanity checks */
if ( !s ) {
errno = EFAULT;
return NULL;
}
if ( !*s ) {
errno = EINVAL;
return s;
}

for (cp1=cp2=s; *cp1; cp1++ )
{
if ( 0 == used[(int)(*cp1)] ) { /* 1st occurence of *cp1 */
*cp2++ = *cp1; /* copy it to start of s, via cp2 */
used[(int)(*cp1)] = 1; /* mark it as used */
}
}
*cp2 = 0; /* null terminate the trimmed s */

return s;
}

Is This Answer Correct ?    1 Yes 1 No

To Write a C program to remove the repeated characters in the entered expression or in entered cha..

Answer / surya

Please send some important programming asked by product companies
to this mail id suryabharathi8@gmail.com

by
Surya

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Code Interview Questions

main() { int i; clrscr(); for(i=0;i<5;i++) { printf("%d\n", 1L << i); } } a. 5, 4, 3, 2, 1 b. 0, 1, 2, 3, 4 c. 0, 1, 2, 4, 8 d. 1, 2, 4, 8, 16

4 Answers   HCL,


How do I write a program to print proper subset of given string . Eg :input: abc output:{},{a},{b},{c},{a,b},{a,c},{b,c}, {a,b,c}.I desperately need this program please mail me to saravana6m@gmail.com

11 Answers   Deshaw, Infosys,


Give a very good method to count the number of ones in a 32 bit number. (caution: looping through testing each bit is not a solution)

7 Answers   Microsoft,


#include"math.h" void main() { printf("Hi everybody"); } if <stdio.h> will be included then this program will must compile, but as we know that when we include a header file in "" then any system defined function find its defination from all the directrives. So is this code of segment will compile? If no then why?

2 Answers  


Code for 1>"ascii to string" 2>"string to ascii"

1 Answers   Aricent, Global Logic,






write a c program to Create a registration form application by taking the details like username, address, phone number, email along with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 5 users and display the details. In place of password display “****”. (Use Structures).

0 Answers   CDAC, College School Exams Tests,


struct Foo { char *pName; char *pAddress; }; main() { struct Foo *obj = malloc(sizeof(struct Foo)); clrscr(); obj->pName = malloc(100); obj->pAddress = malloc(100); strcpy(obj->pName,"Your Name"); strcpy(obj->pAddress, "Your Address"); free(obj); printf("%s", obj->pName); printf("%s", obj->pAddress); } a. Your Name, Your Address b. Your Address, Your Address c. Your Name Your Name d. None of the above

2 Answers   HCL,


how can i search an element in an array

2 Answers   CTS, Microsoft, ViPrak,


main() { int i = 258; int *iPtr = &i; printf("%d %d", *((char*)iPtr), *((char*)iPtr+1) ); }

1 Answers  


Program to Delete an element from a doubly linked list.

4 Answers   College School Exams Tests, Infosys,


print numbers till we want without using loops or condition statements like specifically(for,do while, while swiches, if etc)!

11 Answers   Wipro,


write a c program to Create a mail account by taking the username, password, confirm password, secret_question, secret_answer and phone number. Allow users to register, login and reset password(based on secret question). Display the user accounts and their details .

2 Answers  


Categories