User Profile

Collapse

Profile Sidebar

Collapse
siddharth29
siddharth29
Last Activity: Mar 1 '14, 05:20 PM
Joined: Mar 1 '14
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • siddharth29
    replied to remove punctuation in C
    in C
    Code:
    /*Write a program of palindrome using stack [implement stack using array]:
    Note: Punctuation, Capitalization, and Spaces are ignored. For Example- Poor dan is in a droop.
    
    Date : February 21,2014 */
    
    #include <stdio.h>
    #include <ctype.h>
    #include <string.h>
    #include <stdbool.h>
    
    bool is_palindrome(const char* s)
    {
        int i = 0;
        int j = strlen(s)
    ...
    See more | Go to post

    Leave a comment:


  • siddharth29
    replied to remove punctuation in C
    in C
    You need use ctype.h for remove space,punctuati ons and another grammatical concepts

    See following palindrome checker

    Code:
    /*Write a program of palindrome using stack [implement stack using array]:
    Note: Punctuation, Capitalization, and Spaces are ignored. For Example- Poor dan is in a droop.
    
    Date : February 21,2014 */
    
    #include <stdio.h>
    #include <ctype.h>
    #include <string.h>
    ...
    See more | Go to post
    Last edited by Rabbit; Mar 1 '14, 06:33 PM. Reason: Please use [code] and [/code] tags when posting code or formatted data.

    Leave a comment:

No activity results to display
Show More
Working...