Skip to content
Snippets Groups Projects
Select Git revision
  • 7ed81b884715d26ff30e30f8b169bf1cb50868cd
  • master default
2 results

objects-1.c

Blame
  • arrays-and-pointers-03.c 150 B
    #include <stdio.h>
    
    int main (void)
    {
      char a[] = { 84, 101, 115, 116, 0 };
      char *p = "Test";
      printf ("a = %s, p = %s\n", &a, &p);
      return 0;
    }