parser/c_compiler/test/test.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:13 +0200
changeset 60 47c13ca8c4d0
parent 40 be3f5582b839
child 77 49e0babccb23
permissions -rw-r--r--
Memory Management * myprintf.c: Dynamic Memory allocation added * prog_limit: fixed a segfault committer: Markus Bröker <mbroeker@largo.homelinux.org>

#include <stdio.h>
#include <stdlib.h>

int main (int argc, char **argv)
{
    FILE *fp;

    printf ("Hello, world\n");
    printf ("....\v....\f....\n");

    return EXIT_SUCCESS;
}