Wide-Character String Conversion Functions : Wide Character Functions « Wide Character String « C Tutorial

C Tutorial
1. Language
2. Data Type
3. String
4. printf scanf
5. Operator
6. Statement
7. Array
8. Function
9. Structure
10. Pointer
11. Memory
12. Preprocessor
13. File
14. Data Structure
15. Search Sort
16. Wide Character String
17. assert.h
18. ctype.h
19. math.h
20. setjmp.h
21. signal.h
22. stdio.h
23. stdlib.h
24. string.h
25. time.h
26. wctype.h
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 / ANSI-C
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C Tutorial » Wide Character String » Wide Character Functions 
16. 1. 4. Wide-Character String Conversion Functions

These functions use the header .

Wide-Character Conversion Functions and Their char Equivalents

Functionchar Equivalent
size_t wcsftime(wchar_t *str, size_t max, const wchar_t *fmt, const struct tm *ptr)strftime()
double wcstod(const wchar_t *start, wchar_t **end);strtod()
float wcstof(const wchar_t * restrict start, wchar_t ** restrict end);strtof()
long double wcstold(const wchar_t * restrict start, wchar_t ** restrict end);strtold()
long int wcstol(const wchar_t *start, wchar_t **end,int radix)strtol()
long long int wcstoll(const wchar_t * restrict start,wchar_t ** restrict end,int radix)strtoll()
unsigned long int wcstoul(const wchar_t * restrict start, wchar_t ** restrict end,int radix)strtoul()
unsigned long long int wcstoull( const wchar_t *start, wchar_t **end, int radix)Strtoull()


(C: The Complete Reference, Fourth Edition by Herbert Schildt McGraw-Hill/Osborne 2000 ISBN-10: 0072121246, ISBN-13: 978-0072121247)

16. 1. Wide Character Functions
16. 1. 1. Wide-Character Functions
16. 1. 2. Wide-Character I/O Functions
16. 1. 3. Wide-Character String Functions
16. 1. 4. Wide-Character String Conversion Functions
16. 1. 5. Wide-Character Array Functions
16. 1. 6. Multibyte/Wide-Character Conversion Functions
16. 1. 7. An open-ended means of classifying characters.
w__ww__.__ja_v_a_2__s__._com | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.