[ create a new paste ] login | about

Link: http://codepad.org/9NFN5qQg    [ raw code | output | fork ]

C, pasted on Oct 10:
1
2
3
4
5
6
7
int main( int argc, const char** argv)
{
  char* tab[] = { "lol","rofl"};
  printf("%s %s",tab[0],tab[1]);

  return 0;
}


Output:
1
lol rofl


Create a new paste based on this one


Comments: