Search:

Type: Posts; User: Pallav Mahamana

Search: Search took 0.01 seconds.

  1. #include void remvow(char *); void...

    #include<stdio.h>
    void remvow(char *);
    void main()
    { char str[20];
    printf("Enter String :");
    gets(str);
    remvow(str);
    }

    void remvow(char *t)
  2. WAP to remove vowel string using Pointer and Function

    WAP to remove vowel string using Pointer and Function


    pls help
Results 1 to 2 of 2