Here in this problem , have to store n strings (with length no more of 80).
Gets function is not taking the first string (because I think the problem is new line after n). I also tried "fgets(niza,81,stdin)" but was the same.
int main() {
    int n;
    scanf("%d",&n);
    while(n--)
    {
        char niza[81];
        gets(niza);
        transofrmiraj(niza,x);
        printf("%s\n",niza);
    }
    return 0;
}
 
     
     
    