THEORY
The stdio.h denotes the C library that we have connected this program to, which contains the code to execute printf command and display results. The printf keyword is used to display content on the screen. It can be used to display strings, numbers as well as values of variables etc.
FLOWCHART
Algorithm
Step 1: Start
Step 2: Print Hello World
Step 3: Stop
C Source Code
#include<stdio.h>
main()
{
printf("Hello World");
}