rtfd/in/public/code/c/index.rst
Marc Beninca ddd1735553 c/input
2018-12-11 21:43:19 +01:00

25 lines
284 B
ReStructuredText

C
=
Main
----
.. code:: c
#include <stdio.h>
main() {
printf("Hello, world!\n");
system("pause");
}
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);