secretplace/otros/holamundo.c

6 lines
92 B
C
Raw Normal View History

2021-03-25 12:14:06 -07:00
#include <stdio.h>
int main(){
printf("Hola Mundo \n");
system("pause");
return 0;
}