ravi


{ City } prantij
< Country > india
* Profession * as a student
User No # 106729
Total Questions Posted # 3
Total Answers Posted # 1

Total Answers Posted for My Questions # 6
Total Views for My Questions # 35676

Users Marked my Answers as Correct # 69
Users Marked my Answers as Wrong # 8
Questions / { ravi }
Questions Answers Category Views Company eMail

#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }

Vector India,

1 C 3742

main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }

Vector, Wipro, Zoho,

4 C 23054

main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }

Accenture, Vector,

1 C 8880




Answers / { ravi }

Question { Vector, 27032 }

#define MAX 3
main()
{
printf("MAX = %d \n",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif


Answer

max = 3

Is This Answer Correct ?    69 Yes 8 No