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

C / ANSI-C
1. assert.h
2. Console
3. ctype.h
4. Data Structure Algorithm
5. Data Type
6. Development
7. File
8. Function
9. Language Basics
10. Macro Preprocessor
11. Math
12. math.h
13. Memory
14. Pointer
15. setjmp.h
16. signal.h
17. Small Application
18. stdio.h
19. stdlib.h
20. String
21. string.h
22. Structure
23. time.h
24. wctype.h
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
C / ANSI-C » stdlib.h » wcstombsScreenshots 
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
ww_w_.___java_2_s___._co_m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.