:cry: It runs ok, but the judge returns RTE (Illegal Memory Reference). Why???
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
char * s = (char *)malloc(sizeof(char));
char * t = (char *)malloc(sizeof(char));
int i, tam, pos;
char c;
while (scanf("%s %s", s, t ...