Added C90 and C++98 (#737)

This commit is contained in:
Vivekyadavgithub
2020-04-24 21:34:12 +05:30
committed by GitHub
parent bc106f0254
commit b27ddf35d7
3 changed files with 18 additions and 0 deletions

View File

@@ -153,7 +153,9 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Byter](b/byter.byter) * [Byter](b/byter.byter)
* [Locomotive Basic](b/locomotive-basic.b) * [Locomotive Basic](b/locomotive-basic.b)
* [C++](c/c%2B%2B.cpp) * [C++](c/c%2B%2B.cpp)
* [C++98](c/c%2B%2B98.cpp)
* [C](c/c.c) * [C](c/c.c)
* [C90].(c/c90.c)
* [Caml](c/caml.ml) * [Caml](c/caml.ml)
* [Cardinal](c/cardinal.cardinal) * [Cardinal](c/cardinal.cardinal)
* [Casio Basic](c/Casio%20BASIC) * [Casio Basic](c/Casio%20BASIC)

9
c/c++98.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include<iostream.h>
#include<conio.h>
int main(int argc, char** argv)
{
cout << "Hello World" << endl;
getch();
return 0;
}

7
c/c90.c Normal file
View File

@@ -0,0 +1,7 @@
#include<stdio.h>
int main(int argc, char** argv)
{
printf("Hello World\n");
return 0;
}