Mar 08 2006 12:34 PM 2325 13 A plane travels 695km with wind and 498km aginst the wind in same time.The speed of wind is 21km/hr. Find the speed of plane? kiranmai vishal_Chavan0307 Profile Answers by vishal_Chavan0307 Questions by vishal_Chavan0307 Mar 14th, 2008 I calculate speed but it is very slow for plane in air sakhya Profile Answers by sakhya Questions by sakhya Mar 7th, 2008 I think the ans is 127.72 Answer Question Select Best Answer Feb 02 2006 05:26 AM 3864 15 C Double dimensional arrays Kaustav Dey Biswas How can double dimensional arrays be dynamically initialized in C ? Ajay Kanse Profile Answers by Ajay Kanse Questions by Ajay Kanse Dec 23rd, 2008 There are multiple ways to do this :1. int **arr = (int**) malloc(nrows * sizeof(int*)); for (i=0 ; i<nrows ; i++) { arr[i]=(... SomGollakota Profile Answers by SomGollakota Questions by SomGollakota Jun 13th, 2007 If the question is "How to initialize memory that is dynamically allocated for a 2D array", there are a couple different ways.1. Use memset. memset sets a chunk of memory to a given value. U... Answer Question Select Best Answer
Mar 08 2006 12:34 PM 2325 13 A plane travels 695km with wind and 498km aginst the wind in same time.The speed of wind is 21km/hr. Find the speed of plane? kiranmai vishal_Chavan0307 Profile Answers by vishal_Chavan0307 Questions by vishal_Chavan0307 Mar 14th, 2008 I calculate speed but it is very slow for plane in air sakhya Profile Answers by sakhya Questions by sakhya Mar 7th, 2008 I think the ans is 127.72 Answer Question Select Best Answer
vishal_Chavan0307 Profile Answers by vishal_Chavan0307 Questions by vishal_Chavan0307 Mar 14th, 2008 I calculate speed but it is very slow for plane in air
Feb 02 2006 05:26 AM 3864 15 C Double dimensional arrays Kaustav Dey Biswas How can double dimensional arrays be dynamically initialized in C ? Ajay Kanse Profile Answers by Ajay Kanse Questions by Ajay Kanse Dec 23rd, 2008 There are multiple ways to do this :1. int **arr = (int**) malloc(nrows * sizeof(int*)); for (i=0 ; i<nrows ; i++) { arr[i]=(... SomGollakota Profile Answers by SomGollakota Questions by SomGollakota Jun 13th, 2007 If the question is "How to initialize memory that is dynamically allocated for a 2D array", there are a couple different ways.1. Use memset. memset sets a chunk of memory to a given value. U... Answer Question Select Best Answer
Ajay Kanse Profile Answers by Ajay Kanse Questions by Ajay Kanse Dec 23rd, 2008 There are multiple ways to do this :1. int **arr = (int**) malloc(nrows * sizeof(int*)); for (i=0 ; i<nrows ; i++) { arr[i]=(...
SomGollakota Profile Answers by SomGollakota Questions by SomGollakota Jun 13th, 2007 If the question is "How to initialize memory that is dynamically allocated for a 2D array", there are a couple different ways.1. Use memset. memset sets a chunk of memory to a given value. U...