On Mon, Jun 30, 2008 at 7:18 PM, teletep <[EMAIL PROTECTED]> wrote:
> Thank you again Paul,
>
> My compiler disregards a cast from int to pointer.
> int v,f*; f=(int *)v; generates a "Type mismatch" error.

int v, *f;
f = &v; // or
f = (int*)v; // depending on whether you want the address or the value of v.

-- 
PJH

'Two Dead in Baghdad' not 'product-friendly' - Kent Ertugrul, chief
executive of Phorm.

http://shabbleland.myminicity.com/ind

Reply via email to