15 lines
117 B
ReStructuredText
15 lines
117 B
ReStructuredText
|
C
|
||
|
=
|
||
|
|
||
|
Main
|
||
|
----
|
||
|
|
||
|
.. code:: c
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
main() {
|
||
|
printf("Hello, world!\n");
|
||
|
system("pause");
|
||
|
}
|