From 17b170b8c42d899ad21b4c804163bca586e45912 Mon Sep 17 00:00:00 2001 From: ado Date: Sun, 27 Dec 2020 20:54:47 +0100 Subject: [PATCH] add cpp higlight --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 357fe07..2a90a20 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,13 @@ Example, lets say we have a csv file containing students in the following format : ``` +$ cat students.csv James Bailey,65,2.5 Brian S. Wolfe,40,11.9 Nathan Fielder,37,Really good grades Bill (Heath) Gates,65,3.3 ``` -``` +```cpp #include #include @@ -36,10 +37,10 @@ int main() { } ``` -And if we execute the program we get the following output: +And if we compile and execute the program we get the following output: ``` -$ ./program +$ ./a.out James Bailey 65 2.5 Brian S. Wolfe 40 11.9 Bill (Heath) Gates 65 3.3