Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/CodeWithHarry/The-Ultimate-C-Programming-Course
/ main
Function
main
Chapter 4/03_while_value.c:3–10 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
#include <stdio.h>
2
3
int main(){
4
int i = 0;
5
while (i<10) {
6
printf(
"The value of i is %d \n"
, i);
7
i++;
8
}
9
return 0;
10
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected