#include <stdio.h>
these tells us to include the header which is stdio.h for compilation.
_stdio.h is an header file their are many type of header files like <stdlib.h>,<unistd.h>,<math.h> etc.
void main()
it is basically a starting point of the main program.
printf()
it means print format as a full form.
but it just print the text in the output.
Their are many data types
int_integer of a constant value
char_these is used when an char used like "A" and a integer is given to the char we will see it in the below example.
{ }
these is used at the start of the program and end.the main code is between these.
lets use all these and make a basic program.
#include<stdio.h>
void main()
{
printf("hello\n");
}
one can use software like ms_dos,pinnacle
these tells us to include the header which is stdio.h for compilation.
_stdio.h is an header file their are many type of header files like <stdlib.h>,<unistd.h>,<math.h> etc.
void main()
it is basically a starting point of the main program.
printf()
it means print format as a full form.
but it just print the text in the output.
Their are many data types
int_integer of a constant value
char_these is used when an char used like "A" and a integer is given to the char we will see it in the below example.
{ }
these is used at the start of the program and end.the main code is between these.
lets use all these and make a basic program.
#include<stdio.h>
void main()
{
printf("hello\n");
}
one can use software like ms_dos,pinnacle