To remove repeated character from string, we will traverse the each character of string. And while traversing will also compare to the next character. If same character is available in string and we will just remove the string and shift the element towards left.
You can also see the below program. Some part of logic is mostly same
C program to remove blank space from string in c
How our repeated character removal program work?
- It will take a string as an input.
- Now to remove repeated character our logic will be, we will select one character of the string and compare it with the next upcoming character of the string.
- If the same character comes in the string, we will remove this character by shifting all string character towards left.
- After doing this, again will check to the next character, if match occurs just shift left again.
- By following this approach, at the end we will have string with unique character.
C program to remove repeated character from string
#include <stdio.h> #include <string.h> int main() { char str[256]; printf("C Program to remove all duplicate characters \n"); printf("Please enter a string : "); scanf("%[^\n]",str); int len= strlen(str); for(int i=0; i<len; i++){ for(int j=i+1; j<len;j++){ if(str[i] == str[j]){ for(int k=j; k<len; k++){ str[k] = str[k+1]; } len--; j--; } } } printf("String after removing duplicate values = %s",str); return 0; }
Output

Also Prepare Below Important Question
- Python Program to add two number using Recursion
- Python Program to Find Highest Frequency Element in Array
- Python Program to Merge two Arrays
- Perform left rotation by two positions in Array Using Python
- Python Program to Delete Element at Given Index in Array
- Python Program to Delete element at End of Array
- Python Program to Copy one String to Another String
- Python Program to Remove Repeated Character from String
- Print highest frequency Character in String in Python
- Python Program to Convert lowercase vowel to uppercase
- Convert Celsius to Fahrenheit in Python
- Leap Year Program in Python
- Python Program to convert Decimal to Octal number
- Python Program to Convert Decimal Number into Binary
- Find all Pairs Whose Sum is Equal to Given number in Python
- Python Program to Replace First Vowel With ‘-‘ in String
- Python Program to find Prime factors of given integer
- Python Program to Print Prime Number in given range
- Java Program to Perform Left Rotation on Array Elements by Two
- Java Program to Perform Right Rotation on Array Elements by Two
Interview Questions Categories
C Programming Interview Preparation
Core Java Programming Interview Preparation
- Core Java Programming Coding Questions
- Core Java Pattern Programming Questions
- Core Java Programming Interview Questions