Programming Fundamentals/Introduction/C: Difference between revisions

From Wikiversity
Jump to navigation Jump to search
Content deleted Content added
m See Also
Line 11: Line 11:
== Try It ==
== Try It ==
* [https://repl.it/EJks/2 repl.it]
* [https://repl.it/EJks/2 repl.it]
* [https://www.tutorialspoint.com/compile_c_online.php TutorialsPoint]


== See Also ==
== See Also ==

Revision as of 17:36, 30 October 2016

hello.c

#include <stdio.h>

main()
{
  printf("Hello world!");
}

Try It

See Also