[ create a new paste ] login | about

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

Amarnadh489 - C, pasted on Jun 27:
1
2
3
4
5
6
7
8
9
10
11
12
#include<stdio.h>
main()
{
struct xx
{
int x;
char name[15];
};
struct xx s={3,"venu"};
printf("%d\n","%s",s.x,s.name);

}


Output:
1
2
3
134514168

Exited: ExitFailure 10


Create a new paste based on this one


Comments: