preethi


{ City } tuticorin
< Country > india
* Profession * programmer
User No # 2161
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 # 188
Users Marked my Answers as Wrong # 40
Questions / { preethi }
Questions Answers Category Views Company eMail




Answers / { preethi }

Question { TCS, 36689 }

x=2,y=6,z=6
x=y==z;
printf(%d",x)


Answer

y==z true
so, x=1

Is This Answer Correct ?    78 Yes 6 No

Question { Wipro, 90650 }

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


Answer

57
94

Is This Answer Correct ?    105 Yes 32 No


Question { 12707 }

how many times of error occur in C


Answer

2 types of error. syntax error and segmentation fault

Is This Answer Correct ?    5 Yes 2 No