Convert package from C++ to C.
[assignment-template.git] / hello_world.c
similarity index 86%
rename from hello_world.cpp
rename to hello_world.c
index b470249b4290bd8cdf4107e9dc3cf32dc4fc1f81..c2423049f8ba3e94dc3161704eb9fce828895f8c 100644 (file)
@@ -1,5 +1,5 @@
 /*
-A simple "hello world" example in C++.
+A simple "hello world" example in C.
 
 Copyright (C) 2012  W. Trevor King
 
@@ -17,11 +17,9 @@ You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#include <iostream>
-
-using namespace std;
+#include <stdio.h>
 
 int main() {
-       cout << "hello, world\n";
+       printf("hello, world\n");
        return 0;
 }