C Library Overview
C++ Library Overview
Objective-C Library Overview
Register 4 Free to become a supporter
after your Registration you will get a mail with your account data.
Before you start we recommend to read DokuWiki and Formatting Syntax
This is a Wiki for Programming languages like c and c++
We want to create a functions library reference for all the programming languages out there e.g c c++ c# visual c++ and so on
So do not hesitate to add some example code for e.g. c or c++ for the beginning.
or adjust the content correct / add e.g. c c++ functions , descriptions.
You can also comment the examples or references with your proposals.
The only conditions are that you add no inappropriate content.
and you only add programming language references
be sure it is your code (No cut and paste)
This is a network-to-use reference
for everyone, with Descriptions and Examples for all Programming Languages.
the firsts steps for new articles is a c and c++ reference with a error free example code plus a short description of the function
Hold your Descriptions and articles easy understandable for everyone
please no complex source codes or descriptions that are difficult to understand
#include <stdio.h> int main(int **argc, char **argv) { /* * Sourcecode example for printf * http://c-p-p.net/c/stdio.h/printf */ int i; /* Click on int to look what it is */ i=0; while (1) { /* Click on while to read the description of while*/ i++; printf("Hello World no: %i\n",i); /* Click on printf to read the description of printf*/ } }
output: user@comp:$ ./te Hello World no: 1 Hello World no: 2 Hello World no: ... ... and so on, and so on