9 lines
93 B
C
9 lines
93 B
C
int a = 10;
|
|
__thread int b = 20;
|
|
__thread int c;
|
|
__thread int d;
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|