Added C90 and C++98 (#737)
This commit is contained in:
@@ -153,7 +153,9 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
|
||||
* [Byter](b/byter.byter)
|
||||
* [Locomotive Basic](b/locomotive-basic.b)
|
||||
* [C++](c/c%2B%2B.cpp)
|
||||
* [C++98](c/c%2B%2B98.cpp)
|
||||
* [C](c/c.c)
|
||||
* [C90].(c/c90.c)
|
||||
* [Caml](c/caml.ml)
|
||||
* [Cardinal](c/cardinal.cardinal)
|
||||
* [Casio Basic](c/Casio%20BASIC)
|
||||
|
||||
9
c/c++98.cpp
Normal file
9
c/c++98.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include<iostream.h>
|
||||
#include<conio.h>
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
cout << "Hello World" << endl;
|
||||
getch();
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user