Topic — Add New » Posts Last Poster Freshness
Amazon Interview Question for Software Engineer/Developer (Fresher) 2 MeMeMe 10 months
float f1 = 0.0f, f2;
do
{
  f2 = f1;
  f1 = f1 + 1;
}
while (f2 != f1);

what will the o/p of this question & why its more important why..?? plz run before commenting

Amazon
Cannot convert 'int[*][9]' to 'int**'. Why? 2 Venki 11 months
void f (int **mat)
{

}

int main()
{
  int mat[9][9];
  // f(mat); //Doesn't works.
  f ((int **) mat); //Works.
  return 0;
} //Why?