[ create a new paste ] login | about

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

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

int main(){

char str[14];

str[3] = 'a';
str[1] = 'd';
str[2] = 'x';


printf("score[1] = %s;\n", str);


return 0;
}


Output:
1
score[1] = dxa;


Create a new paste based on this one


Comments: