You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include <stdio.h> // Header File Which Have Already Some Code for executing basic Function like printf and scanf
int main()
{ // main function of the code where the program execution begins(also called entry point of the program) ans "{" shows the entry point of the function
printf("Hello World\n"); // Printf is is standard funtion which is used to print something on the standard console(monitor)
// ans "\n" is a escape sequence character used to print new line
return 0; // return 0 means program executed successfully