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

Function main

Chapter 1/07_escape_sequence.c:3–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <stdio.h>
2
3int main(){
4 int a;
5 char ch = 'a';
6 ch = 'c';
7 ch = '\n'; // represents a new line
8 printf("Hey I am good \\n nice");
9 return 0;
10}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected