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

Function main

Chapter 4/02_while.c:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <stdio.h>
2
3int main(){
4 int i = 0;
5 while(i<4){
6 printf("Happy Birthday!\n");
7 // i = i + 1;
8 i++;
9 }
10 return 0;
11}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected