master
Can202 2021-10-03 15:05:32 -03:00
parent 706bb58ad7
commit 005a575097
1 changed files with 5 additions and 5 deletions

View File

@ -73,9 +73,10 @@ func main() {
<div class="article__content" id="C++">
<h1>C++</h1>
<pre class='code'><code>
#include <span><</span>stdio.h>
#include <span><</span><iostream>
using namespace std;
int main() {
printf("Hola Mundo\n");
cout << "Hola Mundo" << endl;
return 0;
}
</code></pre>
@ -86,10 +87,9 @@ int main() {
<div class="article__content" id="C">
<h1>C</h1>
<pre class='code'><code>
#include <span><</span><iostream>
using namespace std;
#include <span><</span>stdio.h>
int main() {
cout << "Hola Mundo" << endl;
printf("Hola Mundo\n");
return 0;
}
</code></pre>