Backup proyecto Joyfe - Borland

This commit is contained in:
2025-06-16 22:54:10 +02:00
commit d61829a1a7
130 changed files with 11881 additions and 0 deletions

20
CPP/SEPETA.CPP Normal file
View File

@ -0,0 +1,20 @@
// PROGRAMA QUE IMPLEMENTA LAS FUNCIONES
#include <stdio.h>
#include <conio.h>
char var,c;
void main()
{
textbackground(2);
clrscr();
textcolor(4);
gotoxy(20,10);
cprintf("Hola Tron, dame un valor: ");
cscanf("%c", &var);
gotoxy(20,12);
printf("El valor es: %c",var);
scanf("%c",&c);
}