Esempio n. 1
0
// address: 0x10474
int main(int argc, char *argv[], char *envp[]) {
    int o0; 		// r8

    o0 = return1(0);
    printf("SOMETHING%D", o0);
    return 0;
}
Esempio n. 2
0
main()
{
      
      int choice,list_ele;
      choice=0;
      while(choice!=4)
      {
                  printf("choices\n");
                  printf("for makeset 1 \n");
                  printf("for represtative 2 \n");
                  
                  scanf("%d",&choice);
                  if(choice==1)
                  {
                            printf("enter the data \n");
                            scanf("%d",&list_ele); 
                            head=makeset(&head,list_ele);
                            printf("%d\n",&head);
                            
                  }
                  else if(choice==2)
                  {
                            
                            printf("enter first linked list\n");
                            scanf("%d",&re);
                            k=return1(&head1,re);
                            t=represen(&k);
                            printf("%d\n",t);
                  }
     }
}