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/09_for.c:3–9 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
#include <stdio.h>
2
3
int main(){
4
int n = 6;
5
for(int i =0;i<n;i++){
6
printf(
"The value of i is %d\n"
);
7
}
8
return 0;
9
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected