home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lclint.zip / lclint-2_3h-os2-bin.zip / test / tests2.2 / bstring.c < prev    next >
C/C++ Source or Header  |  1997-09-03  |  119b  |  5 lines

  1. char *s1 = { "hullo" } ;
  2. char *s2 = "hullo";
  3. char *s3 = { 'h', 'u', 'l', 'l', 'o' };
  4. char *s4 = { "hullo", "g'bye" } ;
  5.