[ create a new paste ] login | about

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

C, pasted on Aug 5:
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
struct a {
  int a;
};
int main(){
  struct a a;
  a.a = 1;
  printf("a=%d\n", a.a);
  return 0;
}
/* end */


Output:
1
a=1


Create a new paste based on this one


Comments: