secretplace/SecretPlace/Nueva carpeta/holamundo.c

10 lines
119 B
C
Raw Normal View History

2021-04-07 09:09:44 -07:00
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hola Mundo.");
getchar();
system("pause");
return 0;
}