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

Function main

Chapter 3/01_conditionals.c:3–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected