Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/test/core/test_array2b.c
4150 views
1
/*
2
* Copyright 2016 The Emscripten Authors. All rights reserved.
3
* Emscripten is available under two separate licenses, the MIT license and the
4
* University of Illinois/NCSA Open Source License. Both these licenses can be
5
* found in the LICENSE file.
6
*/
7
8
#include <stdio.h>
9
10
static const struct {
11
unsigned char left;
12
unsigned char right;
13
} prioritah[] = {{6, 6}, {6, 6}, {7, 95}, {7, 7}};
14
15
int main() {
16
printf("*%d,%d\n", prioritah[1].left, prioritah[1].right);
17
printf("%d,%d*\n", prioritah[2].left, prioritah[2].right);
18
return 0;
19
}
20
21