#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
struct a{
char *c;
int b;
}t;
int main()
{
scanf("%s %d",t.c,&t.b);
printf("%s",t.c);
getch();
return 0 ;
}
I guess there is some problem in receiving input (more precisely in t.c part). Further assistance will be appreciated.