Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

c-programmig:-

essetials for c programmig:-


1)editor:-it helps us to write our code.
2)compiler:-it is a small tool which coverts the program into mannchinne
language format[0 and 1].

->there are I.D.E means integrated development enivronnment for example:


codeblocks.

creating a simple c program:-


#include<stdio.h>
#include<stdlib.h>
int main()
{
printf("hello world!\n");
return 0;
}

how to use inputs and outputs:-

You might also like