wcstombs: converts *in into *out : wcstombs « stdlib.h « C / ANSI-C






wcstombs: converts *in into *out


    

//Header file:     #include <stdlib.h>  
//Declaration:  size_t wcstombs(char *out, const wchar_t *in, size_t size); 


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


  void shaker(char *items, int count)
  {
    register int a;
    int exchange;
    char t;

    do {
      exchange = 0;
      for(a=count-1; a > 0; --a) {
        if(items[a-1] > items[a]) {
          t = items[a-1];
          items[a-1] = items[a];
          items[a] = t;
          exchange = 1;
        }
      }

      for(a=1; a < count; ++a) {
        if(items[a-1] > items[a]) {
          t = items[a-1];
          items[a-1] = items[a];
          items[a] = t;
          exchange = 1;
        }
      }
    } while(exchange); /* sort until no exchanges take place */
  }

  int main(void)
  {

    char s[255];

    printf("Enter a string:");
    gets(s);
    shaker(s, strlen(s));
    printf("The sorted string is: %s.\n", s);

    return 0;
  }

         
/*
Enter a string:2
The sorted string is: 2.
*/         

           
       








Related examples in the same category