Files

22 lines
211 B
C
Raw Permalink Normal View History

2025-11-17 10:28:09 +01:00
#include <stdio.h>
class int{
char * toText( ) {
char * textNumber = malloc( sizeof( char ) * 20 );
sprintf( textNumber, "%d", this );
return textNumber;
}
int negative() {
return 12;
}
}