though thankx :)

On Thu, Jun 30, 2011 at 12:44 AM, Apoorve Mohan <apoorvemo...@gmail.com>wrote:

> @above: man i need a 2d array not a 1d array...
>
>
> On Thu, Jun 30, 2011 at 12:38 AM, hary rathor <harry.rat...@gmail.com>wrote:
>
>>
>> #include<stdlib.h>
>>
>> int main ()
>> {
>>     int *mat;
>>     int i,j;
>>     int ROW=4;
>>     int COL=3;
>>     int k=0;
>>     mat=(int *)malloc(ROW*COL*sizeof(int));
>>
>>    for(i=0;i<ROW;i++)
>>    for(j=0;j<COL;j++)
>>    mat[i*COL+j]=++k;
>>
>>    for(i=0;i<ROW;i++)
>>    for(j=0;j<COL;j++)
>>    printf("%d,",mat[i*COL+j]);
>>
>>     return 0;
>>
>> }
>>
>>
>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Algorithm Geeks" group.
>> To post to this group, send email to algogeeks@googlegroups.com.
>> To unsubscribe from this group, send email to
>> algogeeks+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/algogeeks?hl=en.
>>
>
>
>
> --
> regards
>
> Apoorve Mohan
>
>


-- 
regards

Apoorve Mohan

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to