Basic of C
Basic of C
C
PROGRAMING
BY KARISHAMA KHANDEKAR
GENERAL
KNOWLEDGE
WHY USE
C...
It is small, high level and structured language
It can manipulate bits of computer memory
Does not put high demand on memory
Can run on different platforms with very little modification
INTRODUCTIO
N
#include <stdio.h>
main()
{
printf(“Hello World!” );
}
Structure of a Simple C Program
printf(“\nProgram start”);
………..……. C Program Code
}
LET’S
START JOURNEY !