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

Function main

Chapter 3/02_if_else.c:3–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <stdio.h>
2
3int main(){
4 int age = 5;
5
6 if(age>10){
7 printf("We are inside if\n");
8 printf("Your age is greater than 10\n");
9 }
10 else{
11 printf("Your age is not greater than 10");
12 }
13 return 0;
14}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected