[ create a new paste ] login | about

Link: http://codepad.org/yOYywv9l    [ raw code | fork ]

C, pasted on Aug 16:
1
2
3
4
5
6
7
8
int main(void) {
  char* ar1 = "Hello";
  char ar2[] = "HEllo";

  char* arr3[] = {"Cat", "Bag", "Kas", "Zzd"};
  char** ar4 = {"Cat", "Bag", "Kas", "Zzd"};
  return 0;
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: