Changes between Version 1 and Version 2 of ResumedC


Ignore:
Timestamp:
Mar 31, 2009, 3:33:10 AM (15 years ago)
Author:
Thanatermesis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ResumedC

    v1 v2  
    1313To declare a string in a variable, you need to use strcpy, so
    1414{{{
     15#!C
    1516   name = "Me";   /* Illegal */
    1617   strcpy (name, "Me");    /* Legal */