Horje
c how to check a palindrome string Code Example
c how to check a palindrome string
#include <stdio.h>
#include <string.h>

int main(){
    char string1[20];
    int i, length;
    int flag = 0;
    
    printf("Enter a string:");
    scanf("%s", string1);
    
    length = strlen(string1);
    
    for(i=0;i < length ;i++){
        if(string1[i] != string1[length-i-1]){
            flag = 1;
            break;
   }
}
    
    if (flag) {
        printf("%s is not a palindrome", string1);
    }    
    else {
        printf("%s is a palindrome", string1);
    }
    return 0;
}




C

Related
servo motor arduino Code Example servo motor arduino Code Example
division en java Code Example division en java Code Example
Hello world in c programming language Code Example Hello world in c programming language Code Example
fread Code Example fread Code Example
C# special character display Code Example C# special character display Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7