We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove the line if it fixed in the testcuite: 00154: TODO array of structure
00154: TODO array of structure
the test: https://github.com/c-testsuite/c-testsuite/blob/master/tests/single-exec/00154.c
#include <stdio.h> struct fred { int boris; int natasha; }; int main() { struct fred bloggs; bloggs.boris = 12; bloggs.natasha = 34; printf("%d\n", bloggs.boris); printf("%d\n", bloggs.natasha); struct fred jones[2]; jones[0].boris = 12; jones[0].natasha = 34; jones[1].boris = 56; jones[1].natasha = 78; printf("%d\n", jones[0].boris); printf("%d\n", jones[0].natasha); printf("%d\n", jones[1].boris); printf("%d\n", jones[1].natasha); return 0; }
The text was updated successfully, but these errors were encountered:
#380, #376, #377
5f8f70a
LeDron12
YaRiabtsev
Successfully merging a pull request may close this issue.
remove the line if it fixed in the testcuite:
00154: TODO array of structure
the test:
https://github.com/c-testsuite/c-testsuite/blob/master/tests/single-exec/00154.c
The text was updated successfully, but these errors were encountered: