First commit 20/03/1997

This commit is contained in:
2021-09-08 21:44:52 +02:00
commit 6823005994
300 changed files with 31820 additions and 0 deletions

16
PROBAR.CPP Normal file
View File

@ -0,0 +1,16 @@
#include <stdio.h>
void main(void)
{
char Nombre2[] = "Esto es una prueba";
//"Prueba";
char Nombre;
strcpy( Nombre , Nombre2 );
char *p; p = Nombre2;
while ( *(p++) != '\0' ); while ( *(p--) != ' ' || p != Nombre2 ); *p = '\0';
strcpy( Apellido1, p+1);
printf( "Nombre: %s \nApellido: %s\n\n", Nombre, Apellido1 );
}