how to deal with it??

surender

On Wed, Jul 20, 2011 at 9:02 PM, sunny agrawal <[email protected]>wrote:

>
> http://groups.google.com/group/programming-puzzles/browse_thread/thread/4fecd0d904624a0d
>
> this will clarify all doubts :)
>
>
> On Wed, Jul 20, 2011 at 8:52 PM, SAMMM <[email protected]> wrote:
>
>> Yaa even if it is 8 bytes long . Compiler will treat the value 10 as 8
>> bytes only . It should be able to assign it to the pointer of the same
>> size (type) ..
>>
>> Try to free the dynamically allocated memory just before " return 0 "
>> and tell me the result after compilation .  Try this :-
>> int main()
>>  {
>>      int* p;
>>
>>
>>      p = (int*)malloc(sizeof(int));
>>
>>
>>      *p = 10;
>>
>>        free(p); /* Try This */
>>
>>     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 [email protected].
>> To unsubscribe from this group, send email to
>> [email protected].
>> For more options, visit this group at
>> http://groups.google.com/group/algogeeks?hl=en.
>>
>>
>
>
> --
> Sunny Aggrawal
> B-Tech IV year,CSI
> Indian Institute Of Technology,Roorkee
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Algorithm Geeks" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>

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

Reply via email to