mastan vali.shaik


{ City } hyderabad
< Country > india
* Profession * trainer
User No # 1316
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 11
Users Marked my Answers as Wrong # 50
Questions / { mastan vali.shaik }
Questions Answers Category Views Company eMail




Answers / { mastan vali.shaik }

Question { TCS, 22771 }

int *a[5] refers to


Answer

the element of 5th row and 0th column

Is This Answer Correct ?    6 Yes 14 No

Question { Ramco, 15942 }

main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

what is the output?


Answer

55 59

Is This Answer Correct ?    3 Yes 23 No


Question { Ramco, 14297 }

#include
main()
{
char *p1;
char *p2;
p1=(char *) malloc(25);
p2=(char *) malloc(25);
strcpy(p1,"Ramco");
strcpy(p2,"Systems");
strcat(p1,p2);
printf("%s",p1);
}

Tell me the output?


Answer

25Ramco25Systems

Is This Answer Correct ?    2 Yes 13 No