Jagged array implementation in C- error: expected ';' at the end of declaration list
I wrote a piece of C code as below:-
typedef struct {
unsigned int buffer_ctrl[4];
unsigned int buffer1[10];
unsigned int buffer2[40];
unsigned int buffer3[20];
unsigned int buffer4[15];
unsigned int *buffer_ptr[4] = {buffer1, buffer2, buffer3, buffer4};
unsigned int canary[4];
} buffer_t;
I wrote this in a header file which I included in a main code. I had read up a lot of examples on jagged array in C and thought this would work just fine. One of the links was Do jagged arrays exist in C/C++?.
However, when I compile I get the error "expected ';' at end of declaration lsit". Can someone please help explain what might be the error here?
Thanks!
c jagged-arrays
|
show 1 more comment
I wrote a piece of C code as below:-
typedef struct {
unsigned int buffer_ctrl[4];
unsigned int buffer1[10];
unsigned int buffer2[40];
unsigned int buffer3[20];
unsigned int buffer4[15];
unsigned int *buffer_ptr[4] = {buffer1, buffer2, buffer3, buffer4};
unsigned int canary[4];
} buffer_t;
I wrote this in a header file which I included in a main code. I had read up a lot of examples on jagged array in C and thought this would work just fine. One of the links was Do jagged arrays exist in C/C++?.
However, when I compile I get the error "expected ';' at end of declaration lsit". Can someone please help explain what might be the error here?
Thanks!
c jagged-arrays
1
It will exceptunsigned int *buffer_ptr[4] = {buffer1, buffer2, buffer3, buffer4};
-- you can't initialize member of a struct at the time of definition. (but you could use aunion
within thestruct
to essentially do the same).
– David C. Rankin
Nov 13 '18 at 5:02
1
Inside a structure? That would not work, I believe.
– Sourav Ghosh
Nov 13 '18 at 5:03
1
@DavidC.Rankin You mean can't - right?
– Sourav Ghosh
Nov 13 '18 at 5:03
1
Yes, right -- you can't (that was meant to say all would work "except" ..).
– David C. Rankin
Nov 13 '18 at 5:04
Please copy-paste the error message verbatim. This does not help anyone if you typo the error message!
– Antti Haapala
Nov 13 '18 at 5:36
|
show 1 more comment
I wrote a piece of C code as below:-
typedef struct {
unsigned int buffer_ctrl[4];
unsigned int buffer1[10];
unsigned int buffer2[40];
unsigned int buffer3[20];
unsigned int buffer4[15];
unsigned int *buffer_ptr[4] = {buffer1, buffer2, buffer3, buffer4};
unsigned int canary[4];
} buffer_t;
I wrote this in a header file which I included in a main code. I had read up a lot of examples on jagged array in C and thought this would work just fine. One of the links was Do jagged arrays exist in C/C++?.
However, when I compile I get the error "expected ';' at end of declaration lsit". Can someone please help explain what might be the error here?
Thanks!
c jagged-arrays
I wrote a piece of C code as below:-
typedef struct {
unsigned int buffer_ctrl[4];
unsigned int buffer1[10];
unsigned int buffer2[40];
unsigned int buffer3[20];
unsigned int buffer4[15];
unsigned int *buffer_ptr[4] = {buffer1, buffer2, buffer3, buffer4};
unsigned int canary[4];
} buffer_t;
I wrote this in a header file which I included in a main code. I had read up a lot of examples on jagged array in C and thought this would work just fine. One of the links was Do jagged arrays exist in C/C++?.
However, when I compile I get the error "expected ';' at end of declaration lsit". Can someone please help explain what might be the error here?
Thanks!
c jagged-arrays
c jagged-arrays
edited Nov 13 '18 at 18:51
asked Nov 13 '18 at 4:57
Siddharth Kabra
62
62
1
It will exceptunsigned int *buffer_ptr[4] = {buffer1, buffer2, buffer3, buffer4};
-- you can't initialize member of a struct at the time of definition. (but you could use aunion
within thestruct
to essentially do the same).
– David C. Rankin
Nov 13 '18 at 5:02
1
Inside a structure? That would not work, I believe.
– Sourav Ghosh
Nov 13 '18 at 5:03
1
@DavidC.Rankin You mean can't - right?
– Sourav Ghosh
Nov 13 '18 at 5:03
1
Yes, right -- you can't (that was meant to say all would work "except" ..).
– David C. Rankin
Nov 13 '18 at 5:04
Please copy-paste the error message verbatim. This does not help anyone if you typo the error message!
– Antti Haapala
Nov 13 '18 at 5:36
|
show 1 more comment
1
It will exceptunsigned int *buffer_ptr[4] = {buffer1, buffer2, buffer3, buffer4};
-- you can't initialize member of a struct at the time of definition. (but you could use aunion
within thestruct
to essentially do the same).
– David C. Rankin
Nov 13 '18 at 5:02
1
Inside a structure? That would not work, I believe.
– Sourav Ghosh
Nov 13 '18 at 5:03
1
@DavidC.Rankin You mean can't - right?
– Sourav Ghosh
Nov 13 '18 at 5:03
1
Yes, right -- you can't (that was meant to say all would work "except" ..).
– David C. Rankin
Nov 13 '18 at 5:04
Please copy-paste the error message verbatim. This does not help anyone if you typo the error message!
– Antti Haapala
Nov 13 '18 at 5:36
1
1
It will except
unsigned int *buffer_ptr[4] = {buffer1, buffer2, buffer3, buffer4};
-- you can't initialize member of a struct at the time of definition. (but you could use a union
within the struct
to essentially do the same).– David C. Rankin
Nov 13 '18 at 5:02
It will except
unsigned int *buffer_ptr[4] = {buffer1, buffer2, buffer3, buffer4};
-- you can't initialize member of a struct at the time of definition. (but you could use a union
within the struct
to essentially do the same).– David C. Rankin
Nov 13 '18 at 5:02
1
1
Inside a structure? That would not work, I believe.
– Sourav Ghosh
Nov 13 '18 at 5:03
Inside a structure? That would not work, I believe.
– Sourav Ghosh
Nov 13 '18 at 5:03
1
1
@DavidC.Rankin You mean can't - right?
– Sourav Ghosh
Nov 13 '18 at 5:03
@DavidC.Rankin You mean can't - right?
– Sourav Ghosh
Nov 13 '18 at 5:03
1
1
Yes, right -- you can't (that was meant to say all would work "except" ..).
– David C. Rankin
Nov 13 '18 at 5:04
Yes, right -- you can't (that was meant to say all would work "except" ..).
– David C. Rankin
Nov 13 '18 at 5:04
Please copy-paste the error message verbatim. This does not help anyone if you typo the error message!
– Antti Haapala
Nov 13 '18 at 5:36
Please copy-paste the error message verbatim. This does not help anyone if you typo the error message!
– Antti Haapala
Nov 13 '18 at 5:36
|
show 1 more comment
1 Answer
1
active
oldest
votes
You cannot assign to buffer_ptr
within the definition of the buffer_t
structure itself. You have to define a variable of the type buffer_t
first and then assign to it.
You can do something like this:
buffer_t bt = {
.buffer_ptr[0] = bt.buffer1,
.buffer_ptr[1] = bt.buffer2,
.buffer_ptr[2] = bt.buffer3,
.buffer_ptr[3] = bt.buffer4
};
There generally isn't a good reason to permanently store an array that is so easy to calculate, though. You can create such an array when you need it, and save memory when you don't.
– YoYoYonnY
Nov 13 '18 at 18:55
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274062%2fjagged-array-implementation-in-c-error-expected-at-the-end-of-declaration%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You cannot assign to buffer_ptr
within the definition of the buffer_t
structure itself. You have to define a variable of the type buffer_t
first and then assign to it.
You can do something like this:
buffer_t bt = {
.buffer_ptr[0] = bt.buffer1,
.buffer_ptr[1] = bt.buffer2,
.buffer_ptr[2] = bt.buffer3,
.buffer_ptr[3] = bt.buffer4
};
There generally isn't a good reason to permanently store an array that is so easy to calculate, though. You can create such an array when you need it, and save memory when you don't.
– YoYoYonnY
Nov 13 '18 at 18:55
add a comment |
You cannot assign to buffer_ptr
within the definition of the buffer_t
structure itself. You have to define a variable of the type buffer_t
first and then assign to it.
You can do something like this:
buffer_t bt = {
.buffer_ptr[0] = bt.buffer1,
.buffer_ptr[1] = bt.buffer2,
.buffer_ptr[2] = bt.buffer3,
.buffer_ptr[3] = bt.buffer4
};
There generally isn't a good reason to permanently store an array that is so easy to calculate, though. You can create such an array when you need it, and save memory when you don't.
– YoYoYonnY
Nov 13 '18 at 18:55
add a comment |
You cannot assign to buffer_ptr
within the definition of the buffer_t
structure itself. You have to define a variable of the type buffer_t
first and then assign to it.
You can do something like this:
buffer_t bt = {
.buffer_ptr[0] = bt.buffer1,
.buffer_ptr[1] = bt.buffer2,
.buffer_ptr[2] = bt.buffer3,
.buffer_ptr[3] = bt.buffer4
};
You cannot assign to buffer_ptr
within the definition of the buffer_t
structure itself. You have to define a variable of the type buffer_t
first and then assign to it.
You can do something like this:
buffer_t bt = {
.buffer_ptr[0] = bt.buffer1,
.buffer_ptr[1] = bt.buffer2,
.buffer_ptr[2] = bt.buffer3,
.buffer_ptr[3] = bt.buffer4
};
answered Nov 13 '18 at 5:16
P.W
11.4k3842
11.4k3842
There generally isn't a good reason to permanently store an array that is so easy to calculate, though. You can create such an array when you need it, and save memory when you don't.
– YoYoYonnY
Nov 13 '18 at 18:55
add a comment |
There generally isn't a good reason to permanently store an array that is so easy to calculate, though. You can create such an array when you need it, and save memory when you don't.
– YoYoYonnY
Nov 13 '18 at 18:55
There generally isn't a good reason to permanently store an array that is so easy to calculate, though. You can create such an array when you need it, and save memory when you don't.
– YoYoYonnY
Nov 13 '18 at 18:55
There generally isn't a good reason to permanently store an array that is so easy to calculate, though. You can create such an array when you need it, and save memory when you don't.
– YoYoYonnY
Nov 13 '18 at 18:55
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274062%2fjagged-array-implementation-in-c-error-expected-at-the-end-of-declaration%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
It will except
unsigned int *buffer_ptr[4] = {buffer1, buffer2, buffer3, buffer4};
-- you can't initialize member of a struct at the time of definition. (but you could use aunion
within thestruct
to essentially do the same).– David C. Rankin
Nov 13 '18 at 5:02
1
Inside a structure? That would not work, I believe.
– Sourav Ghosh
Nov 13 '18 at 5:03
1
@DavidC.Rankin You mean can't - right?
– Sourav Ghosh
Nov 13 '18 at 5:03
1
Yes, right -- you can't (that was meant to say all would work "except" ..).
– David C. Rankin
Nov 13 '18 at 5:04
Please copy-paste the error message verbatim. This does not help anyone if you typo the error message!
– Antti Haapala
Nov 13 '18 at 5:36