Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | None | 0 0
  1. else if(strcmp(root->descricao,"For")==0||strcmp(root->descricao,"If")==0){
  2.         while(aux!=NULL){
  3.             if(aux->type!="bool"){
  4.                 strcat(answer, "Incompatile type ");
  5.                 strcat(answer, aux->type);
  6.                 strcat(answer, " in ");
  7.                 strcat(answer, root->descricao);
  8.                 strcat(answer, " statement");
  9.             }
  10.            
  11.         }
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement