Buchempfehlung
Windows System Programming
Windows System Programming
Das Kompendium liefert viele interessante Informationen zur Windows-Programmierung auf Englisch. [Mehr Infos...]
FreeBASIC-Chat
Es sind Benutzer im FreeBASIC-Chat online.
(Stand:  )
FreeBASIC bei Twitter
Twitter FreeBASIC-Nachrichten jetzt auch über Twitter erhalten. Follow us!

fb:porticula NoPaste

Info
Info / Hilfe
Liste
Übersicht / Liste
Neu
Datei hochladen
Suche
Quellcode suchen
Download
Dateidownload

Reallocate-Beispiel modd

Uploader:AdministratorSebastian
Datum/Zeit:29.05.2010 21:50:16

dim x as any ptr = 0
dim y as any ptr = 0
x = reallocate (y,Sizeof(Double))
print "x = " & x
print "y = " & y
deallocate(x)
sleep

'Ausgabe zum Beispiel:
'x = 3358632
'y = 0