edited a typo in compiling with Make Section

This commit is contained in:
subrajeet-maharana 2023-02-28 05:03:35 +05:30
parent c5391877e6
commit d30df65656

View file

@ -63,7 +63,7 @@ Let's use the makefile to compile a basic `.cpp` program. First, let's create a
#include <iostream>
int main() {
std::cout << "Hello!\\n";
std::cout << "Hello!\n";
return 0;
}
```