Wednesday, August 1, 2012

THE C ANSI C

THE C ANSI C


BRIAN W. KERIGHAN
DENNIS M. RITCHIE
prentice hal software series




#include <stdio.h>                include information about standard 
library
main()                            define a function called main
                                  that received no argument values
{                                 statements of main are enclosed in braces
    printf("hello, world\n");     main calls library function printf
                                  to print this sequence of characters
}                                 \n represents the newline character
The first C program   





No comments:

Post a Comment