[ create a new paste ] login | about

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

C, pasted on Dec 27:
1
2
3
4
5
6
7
8
#include<stdio.h>
 

int main(int argc, char** argv) {
int a[4]={'1','2','2','\0'};
printf("The value of a is %d",a[1]);
return 0;
}


Output:
1
The value of a is 50


Create a new paste based on this one


Comments: