Difference between revisions of "Talk:Secure programming"

From Free Pascal wiki
Jump to navigationJump to search
 
Line 5: Line 5:
 
   ....
 
   ....
  
won't create any trouble. The compiler knows how long strings are when storing data. --23:31, 25 Feb 2005 (CET)
+
won't create any trouble. The compiler knows how long strings are when storing data. --[[User:FPK|FPK]] 23:32, 25 Feb 2005 (CET)

Revision as of 00:32, 26 February 2005

var
  sName : String[10];
  ....
  sName :=  'abcdefghijklmnopqrstuvwxyz' ;
  ....

won't create any trouble. The compiler knows how long strings are when storing data. --FPK 23:32, 25 Feb 2005 (CET)