Linux C hello world
1. vi functions.c [codesyntax lang="c"] #include <stdio.h> void hello_world(void) { printf("hello world!!\n"); } [/codesyntax] 2. vi hello.c [codesyntax lang="c"] #include <stdio.h> #include <stdlib.h… Continue reading
Custom PHP Extension in C
For Linux (Ubuntu Server) 1. Installation [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ sudo apt-get install gcc $ sudo apt-get install php5-dev [/codesyntax] 2. PHP Source Packa… Continue reading