Program Syntax-
Let us start with our first program.
In this we are going to do a very basic program just to provide you with the overview of the syntax.
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
int main()
{
printf("Hello World");
return 0;
}
output -
Hello World
so first there is header file.
Then there starts the declaration of variables and assignment of values.
The input/output operations are provided.
End of the program.
This is a basic program and we will go ahead by rendering in this code more and more.
0 Comments