MCPcopy Create free account
hub / github.com/CodeWithHarry/The-Ultimate-C-Programming-Course / main

Function main

Chapter 1/05_comments.c:8–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6#include<stdio.h>
7
8int main(){
9
10 // I am writing this just for fun. This line doesnt do anything
11 printf("Hello World");
12 // Return 0 is returning 0 to the OS
13 return 0; // This is return
14}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected