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