tectura
Company
Programming
main()
{
int i=400,j=300;
printf("%d..%d");
}
Read Solution (Total 0)
tectura Other Question
main()
{
struct xx
{
int x=3;
char name[]="hello";
};
struct xx *s;
printf("%d",s->x);
printf("%s",s->name);
}
#include
int main()
{
int i=5,j;
j=++i+++i+++i;
printf("%d %d",i,j);
return 0;
}