|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Generate data entry and reporting .NET Web apps in minutes, straight from your database. Read our FREE whitepaper “Build Web 2.0 Applications Without Hand-Coding” Download now! |
|
#1
|
|||
|
|||
|
where can i found the ansy c functions documents
i want to write some programm on linux, but i do not know what is the functions of ansy c which i could invoke?
could somebody give me some tips and tell me where is the source? thanks frederick van targero |
|
#2
|
||||
|
||||
|
Buy this book:
http://www.amazon.com/exec/obidos/t...=books&n=507846 It will teach you everything you need to know about C.
__________________
Jon Sagara "Me fail English? That's unpossible!" |
|
#3
|
||||
|
||||
|
You can also search the man pages on the linux box. It has decent documentation on most every function call that is standard with C.
i.e. man strncmp will give you the man page for Code:
int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, size_t n);
You can also search online @ http://linux.ctyme.com/ or by searching some of these links: http://www.google.com/search?hl=en&...G=Google+Search |
|
#4
|
|||
|
|||
|
A good start
this should be a starting place
URL Also, when coding think small first Program To-Do List 1. Make hello world 2. Add two numbers ... You get the drift. also just b/c you may not know gcc foo.c -- this compiles the code /a.out -- runs the program gcc -o any_name foo.c /any_name -- new program name |
![]() |
| Viewing: Dev Shed Forums > Programming Languages > C Programming > where can i found the ansy c functions documents |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|