Hello There,
C was originally developed by Dennis Ritchie between 1969 and 1973 at AT&T Bell Labs
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin urna odio, aliquam vulputate faucibus id, elementum lobortis felis. Mauris urna dolor, placerat ac sagittis quis.
(and will have to remember of course)
use for integer values
ranges up to -32768 to 32767
storage size 2 to 4 bytes
One Famous Program we should not miss:
#include<stdio.h>
main()
{
printf("Hello World !"); // some command
}
We need not know all of it to start.
Before moving further Lets talk of where you will try them.
Nothing to worry we will give you the link on facebook. Follow the the instruction on as stated on the website.
Here it Goes :
#include<stdio.h> // Something you should not worry about
int main()
{
int a=2; // This is a Comment
int b=3; // a,b and c are variables
int c ;
c = a + b ; // Operations
/* this is
multi line comment */
printf("%d", c); // This is a statement
return 0; // Something you should not worry about
}