> Online tutorial : String Programs5
Showing posts with label String Programs5. Show all posts
Showing posts with label String Programs5. Show all posts


/**********************************************************/
/*                                                        */
/* String Declaration                                     */
/*                                                        */
/**********************************************************/

#define SIZE    10

char *global_string1;
char  global_string2[SIZE];


main ()

{ char *auto_string;
  char  arraystr[SIZE];
  static char *stat_strng;
  static char statarraystr[SIZE];

}