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
Posted in C, Linux| Tagged , | Leave a comment