rtfd/in/public/code/c/index.rst

26 lines
284 B
ReStructuredText
Raw Normal View History

2018-12-11 20:38:01 +00:00
C
=
Main
----
.. code:: c
#include <stdio.h>
main() {
printf("Hello, world!\n");
system("pause");
}
2018-12-11 20:43:19 +00:00
Input
-----
.. code:: c
int entry1 = 0;
int entry2 = 0;
printf("type in 2 integers\n");
scanf("%d%d", &entry1, &entry2);
printf("sum: %d\n", entry1 + entry2);