1.

#include int main (){printf ("Hello World");return 0;}​xplan this

Answer»

ing C ProgramBy seeing the program, we can conclude that the program has been written using C. In every new programming language program generally start with "Hello World!". This is the SIMPLE program.Before we understand the Program step-by-step, let's first know that what is C programming language and also look at once that how the output will come from the program.C is a computer programming language, it was developed by Ken Thompson and Dennis, it was developed in early 1970s at Bell labs, it was developed to do computer Programming.The output of the given program would be like this:Hello WorldExplanation of C ProgramGiven program:#INCLUDEint main (){printf ("Hello World");return 0;}Let's breakdown each and every line of cօde and understanding the above C program step-by-step.#include : This function is used to generating output, it looks for the studio.h, it is also called header file. In order to use the printf() and scanf() functions, we must first include the needed file.int main() : This function is used for returns to a compiler and the main() function is the input point for a program.Curly bracket { : This LEFT Curly brackets is used specify the commencement or STARTING of the function.printf() : This function is used to print the data/messege/file.return 0 : This function means that our program is now ready to run.Curly bracket } : This left Curly brackets is used specify termination or end and of the function.



Discussion

No Comment Found