[ create a new paste ] login | about

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

C, pasted on Jan 28:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>

char a[3]="abc";
char b[3]="def";
char c[]="qwe";

int main()
{
	char al[3]="abc";
	char bl[3]="def";
	char cl[]="qwe";	
printf("%s",a);
printf("\n----------------------\n");
printf("%s",al);
	

return 0;
}


Output:
1
2
3
abcdefqwe
----------------------
abc


Create a new paste based on this one


Comments: